Descent3/md5/CMakeLists.txt
Louis Gombert 60c5dbf1fe CMake: add all headers to target sources
This can help with CMake IDE integration and file indexing.
2024-08-09 17:09:14 +02:00

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()