21 lines
340 B
CMake
21 lines
340 B
CMake
add_library(model
|
|
MotorModel.cpp
|
|
MotorModel.h
|
|
MotorModelDatabase.cpp
|
|
MotorModelDatabase.h
|
|
Part.cpp
|
|
Part.h
|
|
Propagatable.cpp
|
|
Propagatable.h
|
|
RocketModel.cpp
|
|
RocketModel.h
|
|
ThrustCurve.cpp
|
|
ThrustCurve.h
|
|
InertiaTensors.h)
|
|
|
|
target_link_libraries(model PRIVATE
|
|
utils)
|
|
|
|
# Unit tests
|
|
add_subdirectory(tests)
|