]> git.mxchange.org Git - flightgear.git/blob - src/CMakeLists.txt
Toggle cloud drawing on/off
[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                 Canvas
12                 Radio
13                 Autopilot
14                 Cockpit
15                 Environment
16                 GUI
17                 Input
18                 Instrumentation
19                 Model
20                 MultiPlayer
21                 AIModel
22                 Navaids
23                 Network
24                 Scenery
25                 Scripting
26                 Sound
27                 Systems
28                 Time
29                 Traffic
30                 FDM
31                 Viewer
32                 Main
33         )
34
35         add_subdirectory(${mylibfolder})
36
37 endforeach( mylibfolder )
38