mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
3bd07d1f7e
Properly include and reuse produced static lib in other components.
12 lines
189 B
CMake
12 lines
189 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
Collide.cpp
|
|
FindIntersection.cpp
|
|
newstyle_fi.cpp
|
|
physics.cpp)
|
|
|
|
add_library(physics STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(physics PRIVATE
|
|
sndlib
|
|
)
|