1
0
Fork 0
flightgear/src/CMakeLists.txt
Thomas Geymayer d82fd7cc5f Basic 2D canvas implementation.
Support text and transformations for the moment, more
features to follow in due course.
2012-05-18 07:05:37 +01:00

38 lines
511 B
CMake

include_directories(${PROJECT_SOURCE_DIR})
# note order here affects link order, and hence linking correctness
# on systems with a traditional ld (eg, GNU ld on Linux)
foreach( mylibfolder
Airports
Aircraft
ATC
ATCDCL
Canvas
Radio
Autopilot
Cockpit
Environment
GUI
Input
Instrumentation
Model
MultiPlayer
AIModel
Navaids
Network
Scenery
Scripting
Sound
Systems
Time
Traffic
FDM
Viewer
Main
)
add_subdirectory(${mylibfolder})
endforeach( mylibfolder )