]> git.mxchange.org Git - flightgear.git/blob - src/CMakeLists.txt
Replace the NOAA METAR URL with the new, updated one
[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                 Canvas
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                 Viewer
31                 Main
32         )
33
34         add_subdirectory(${mylibfolder})
35
36 endforeach( mylibfolder )
37