Descent3/model/CMakeLists.txt

23 lines
303 B
CMake
Raw Permalink Normal View History

set(HEADERS
2024-09-23 00:16:07 +00:00
polymodel.h
)
set(CPPS
newstyle.cpp
polymodel.cpp
)
2024-04-16 03:43:29 +00:00
add_library(model STATIC ${HEADERS} ${CPPS})
target_link_libraries(model PRIVATE
cfile
2024-09-23 00:16:07 +00:00
ddebug
logger
mem
misc
physics
)
target_include_directories(model PUBLIC
$<BUILD_INTERFACE:
${PROJECT_SOURCE_DIR}/model
>
)