mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
12 lines
171 B
CMake
12 lines
171 B
CMake
set(HEADERS md5.h)
|
|
set(CPPS
|
|
md5.cpp)
|
|
|
|
set(PLATFORMCPPS)
|
|
|
|
add_library(md5 STATIC ${HEADERS} ${CPPS} ${PLATFORMCPPS})
|
|
|
|
if(BUILD_TESTING)
|
|
add_subdirectory(tests)
|
|
endif()
|