mirror of
https://github.com/Hizenberg469/Timer-Library.git
synced 2026-04-19 17:52:26 +03:00
12 lines
295 B
CMake
12 lines
295 B
CMake
set(TIMERLIB_TEST_EXE timerlib_test)
|
|
|
|
set(TIMERLIB_TEST_SRC "timerlib_test.c")
|
|
|
|
add_executable(${TIMERLIB_TEST_EXE}
|
|
${TIMERLIB_TEST_SRC})
|
|
|
|
target_link_libraries(${TIMERLIB_TEST_EXE} PUBLIC
|
|
${TIMER_LIB})
|
|
|
|
target_include_directories(${TIMERLIB_TEST_EXE} PUBLIC
|
|
${HEADER_DIR}) |