mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
b9da6b59ff
Update physics module, minor cleanups, remove unused code.
18 lines
245 B
CMake
18 lines
245 B
CMake
set(CPPS
|
|
newstyle.cpp
|
|
polymodel.cpp
|
|
)
|
|
|
|
add_library(model STATIC ${CPPS})
|
|
target_link_libraries(model PRIVATE
|
|
cfile
|
|
mem
|
|
misc
|
|
physics
|
|
)
|
|
target_include_directories(model PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/model
|
|
>
|
|
)
|