]> git.mxchange.org Git - flightgear.git/blob - src/FDM/YASim/CMakeLists.txt
Unified handling of (fuel-)tank properties
[flightgear.git] / src / FDM / YASim / CMakeLists.txt
1 include(FlightGearComponent)
2
3 set(SOURCES
4     Airplane.cpp
5         Atmosphere.cpp
6         ControlMap.cpp
7         FGFDM.cpp
8         FGGround.cpp
9         Gear.cpp
10         Glue.cpp
11         Ground.cpp
12         Hitch.cpp
13         Hook.cpp
14         Integrator.cpp
15         Jet.cpp
16         Launchbar.cpp
17         Math.cpp
18         Model.cpp
19         PistonEngine.cpp
20         PropEngine.cpp
21         Propeller.cpp
22         RigidBody.cpp
23         Rotor.cpp
24         Rotorpart.cpp
25         SimpleJet.cpp
26         Surface.cpp
27         Thruster.cpp
28         TurbineEngine.cpp
29         Turbulence.cpp
30         Wing.cpp
31         YASim.cxx
32     )
33
34 flightgear_component(YASim "${SOURCES}")
35     
36 add_executable(yasim yasim-test.cpp)
37
38 target_link_libraries(yasim 
39         fgYASim
40         ${SIMGEAR_LIBRARIES}
41         ${ZLIB_LIBRARIES})
42
43 install(TARGETS yasim RUNTIME DESTINATION bin)
44         
45