gemhadar/test/CMakeLists.txt
2024-06-20 14:52:52 +01:00

7 lines
191 B
CMake

add_library(test_lib
"test_io.c"
)
target_include_directories(test_lib PUBLIC "include")
set_property(TARGET test_lib PROPERTY C_STANDARD 11)
target_link_libraries(test_lib gemhadar_lib)