mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
60c5dbf1fe
This can help with CMake IDE integration and file indexing.
10 lines
136 B
CMake
10 lines
136 B
CMake
set(HEADERS md5.h)
|
|
set(CPPS
|
|
md5.cpp)
|
|
|
|
add_library(md5 STATIC ${HEADERS} ${CPPS})
|
|
|
|
if(BUILD_TESTING)
|
|
add_subdirectory(tests)
|
|
endif()
|