]> git.mxchange.org Git - flightgear.git/blob - src/CMakeLists.txt
Ron Jensen: fixed a potential NaN and Segfault in JSBSim propeller code
[flightgear.git] / src / CMakeLists.txt
1
2 include_directories(${PROJECT_SOURCE_DIR})
3
4 # note order here affects link order, and hence linking correctness
5 # on systems with a traditional ld (eg, GNU ld on Linux)
6 foreach( mylibfolder 
7                 Airports
8                 Aircraft
9                 ATC
10                 ATCDCL
11                 Radio
12                 Autopilot
13                 Cockpit
14                 Environment
15                 GUI
16                 Input
17                 Instrumentation
18                 Model
19                 MultiPlayer
20                 AIModel
21                 Navaids
22                 Network
23                 Scenery
24                 Scripting
25                 Sound
26                 Systems
27                 Time
28                 Traffic
29                 FDM
30                 Main
31     )
32
33     add_subdirectory(${mylibfolder})
34 endforeach( mylibfolder )
35