Timer Library Complete

This commit is contained in:
2024-06-01 10:49:19 +05:30
commit a2dc93136a
12 changed files with 959 additions and 0 deletions

12
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
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})