]> git.mxchange.org Git - flightgear.git/blob - src/CMakeLists.txt
Initial work on CMake build files, with considerable help from Olaf Flebbe.
[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                 Autopilot
11                 Cockpit
12                 Environment
13                 GUI
14                 Input
15                 Instrumentation
16                 Model
17                 MultiPlayer
18     AIModel
19     Navaids
20                 Network
21                 Scenery
22                 Scripting
23                 Sound
24                 Systems
25                 Time
26                 Traffic
27                 FDM
28                 Main
29     )
30
31     add_subdirectory(${mylibfolder})
32 endforeach( mylibfolder )
33