]> git.mxchange.org Git - flightgear.git/commitdiff
Cmake: add fgadmin to the project
authorFrederic Bouvier <fredfgfs01@free.fr>
Wed, 5 Jan 2011 16:51:46 +0000 (17:51 +0100)
committerFrederic Bouvier <fredfgfs01@free.fr>
Wed, 5 Jan 2011 16:51:46 +0000 (17:51 +0100)
utils/CMakeLists.txt
utils/fgadmin/CMakeLists.txt [new file with mode: 0644]
utils/fgadmin/src/CMakeLists.txt [new file with mode: 0644]

index bcf0fcbc0bf6f604d6a679389c10bbe5f1dd4034..dffd090db9a1861284647f125ad06476f14822dd 100644 (file)
@@ -1,3 +1,4 @@
 add_subdirectory(TerraSync)
 add_subdirectory(fgviewer)
 add_subdirectory(GPSsmooth)
+add_subdirectory(fgadmin)
diff --git a/utils/fgadmin/CMakeLists.txt b/utils/fgadmin/CMakeLists.txt
new file mode 100644 (file)
index 0000000..febd4f0
--- /dev/null
@@ -0,0 +1 @@
+add_subdirectory(src)
diff --git a/utils/fgadmin/src/CMakeLists.txt b/utils/fgadmin/src/CMakeLists.txt
new file mode 100644 (file)
index 0000000..045ab0b
--- /dev/null
@@ -0,0 +1,11 @@
+
+add_executable(fgadmin fgadmin.cxx fgadmin_funcs.cxx main.cxx untarka.c)
+
+target_link_libraries(fgadmin 
+       ${SIMGEAR_LIBRARIES}
+       ${ZLIB_LIBRARIES}
+       ${PLIB_LIBRARIES}
+       ${FLTK_LIBRARIES}
+)
+       
+install(TARGETS fgadmin RUNTIME DESTINATION bin)