RTM Project

This commit is contained in:
2024-05-07 22:02:08 +05:30
commit f7d7a53ade
20 changed files with 2033 additions and 0 deletions

25
DLL/CMakeLists.txt Normal file
View File

@@ -0,0 +1,25 @@
set( DLL_SOURCE
"dll.c")
set( DLL_HEADER
"dll.h")
set( TEST_EXE
"main.c")
add_library( ${DLL_NAME} STATIC
${DLL_SOURCE}
${DLL_HEADER})
if( DLL_TESTING )
add_executable( testDll
${TEST_EXE})
target_include_directories( testDll PUBLIC
"./")
endif()
target_include_directories( ${DLL_NAME} PUBLIC
"./" #for files on same path as this CMakeLists.txt file.
)