mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
21 lines
297 B
CMake
21 lines
297 B
CMake
set(HEADERS
|
|
polymodel.h)
|
|
set(CPPS
|
|
newstyle.cpp
|
|
polymodel.cpp
|
|
)
|
|
|
|
add_library(model STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(model PRIVATE
|
|
cfile
|
|
mem
|
|
misc
|
|
physics
|
|
plog::plog
|
|
)
|
|
target_include_directories(model PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/model
|
|
>
|
|
)
|