Descent3/physics/CMakeLists.txt
Azamat H. Hackimov 3bd07d1f7e Reordering dependant on sndlib modules
Properly include and reuse produced static lib in other components.
2024-05-22 22:03:46 +03:00

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
)