mirror of
https://github.com/Tilo-K/sea-flags.git
synced 2026-01-09 15:31:02 +00:00
13 lines
256 B
CMake
13 lines
256 B
CMake
add_executable(SeaFlagTests
|
|
test_main.c
|
|
)
|
|
|
|
target_link_libraries(SeaFlagTests PRIVATE SeaFlags)
|
|
|
|
target_include_directories(SeaFlagTests
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../include
|
|
)
|
|
|
|
add_test(NAME RunSeaFlagTests COMMAND SeaFlagTests)
|