]> git.mxchange.org Git - flightgear.git/blob - src/CMakeLists.txt
Fix the tank properties if no content was defined in fg
[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                 Autopilot
12                 Cockpit
13                 Environment
14                 GUI
15                 Input
16                 Instrumentation
17                 Model
18                 MultiPlayer
19     AIModel
20     Navaids
21                 Network
22                 Scenery
23                 Scripting
24                 Sound
25                 Systems
26                 Time
27                 Traffic
28                 FDM
29                 Main
30     )
31
32     add_subdirectory(${mylibfolder})
33 endforeach( mylibfolder )
34