From 38c5e18b94c1f2f506b89cfa582b4aba80fe48d7 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Mon, 5 Aug 2024 14:32:56 -0500 Subject: Add python and a bunch of documentation Signed-off-by: Matt Strapp --- CMakeLists.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index e5e8927..6442c4f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,4 +33,11 @@ install( LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} -) \ No newline at end of file +) + +add_executable(test_locusts tests/test_locusts.c) +target_link_libraries(test_locusts PRIVATE ocusts) + +enable_testing() + +add_test(NAME test_locusts COMMAND test_locusts) \ No newline at end of file -- cgit v1.2.3