Descent3/cfile/CMakeLists.txt

28 lines
372 B
CMake
Raw Normal View History

set(HEADERS
cfile.h
hogfile.h
inffile.h)
set(CPPS
cfile.cpp
hogfile.cpp
inffile.cpp
)
2024-04-16 03:43:29 +00:00
add_library(cfile STATIC ${HEADERS} ${CPPS})
target_link_libraries(cfile PRIVATE
2024-09-23 00:16:07 +00:00
ddebug
2024-05-22 21:59:23 +00:00
ddio
logger
mem
misc
)
target_include_directories(cfile PUBLIC
$<BUILD_INTERFACE:
${PROJECT_SOURCE_DIR}/cfile
>
)
2024-06-27 16:02:39 +00:00
if(BUILD_TESTING)
add_subdirectory(tests)
endif()