Initial commit
This commit is contained in:
5
test/CMakeLists.txt
Normal file
5
test/CMakeLists.txt
Normal file
@ -0,0 +1,5 @@
|
||||
add_compile_options(-Wall -Wpedantic)
|
||||
link_libraries(olisp)
|
||||
|
||||
add_executable(test_object test_object.c)
|
||||
add_test(NAME object COMMAND test_object)
|
5
test/test_object.c
Normal file
5
test/test_object.c
Normal file
@ -0,0 +1,5 @@
|
||||
#include <lisp/object.h>
|
||||
|
||||
int main(int argc, const char **argv) {
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user