7 lines
191 B
CMake
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)
|