]> git.lizzy.rs Git - nothing.git/blobdiff - CMakeLists.txt
(#434) Implement multiplication in Ebisp
[nothing.git] / CMakeLists.txt
index 223f602f2bb1f23cf281dc6ff45c022382ff3186..9aeb187ace521dfe01e14da02654bb2208d46336 100644 (file)
@@ -117,6 +117,10 @@ add_executable(nothing
   src/system/nth_alloc.c
   src/game/level_script.c
   src/game/level_script.h
+  src/ebisp/std.h
+  src/ebisp/std.c
+  src/system/stacktrace.h
+  src/system/stacktrace.c
 )
 
 add_executable(repl
@@ -149,6 +153,10 @@ add_executable(repl
   src/system/nth_alloc.c
   src/ebisp/repl_runtime.h
   src/ebisp/repl_runtime.c
+  src/ebisp/std.h
+  src/ebisp/std.c
+  src/system/stacktrace.h
+  src/system/stacktrace.c
   )
 add_executable(nothing_test
   src/ebisp/builtins.c
@@ -180,6 +188,8 @@ add_executable(nothing_test
   src/system/log.c
   src/system/nth_alloc.h
   src/system/nth_alloc.c
+  src/system/stacktrace.h
+  src/system/stacktrace.c
   )
 target_link_libraries(nothing ${SDL2_LIBRARY} ${SDL2_MIXER_LIBRARY} m)
 target_link_libraries(nothing_test ${SDL2_LIBRARY} ${SDL2_MIXER_LIBRARY} m)