From: Frederic Bouvier Date: Wed, 5 Jan 2011 16:51:46 +0000 (+0100) Subject: Cmake: add fgadmin to the project X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ef4c4ac1f503b26954b2972bb51f78b63e88078c;p=flightgear.git Cmake: add fgadmin to the project --- diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index bcf0fcbc0..dffd090db 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -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 index 000000000..febd4f0ab --- /dev/null +++ b/utils/fgadmin/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory(src) diff --git a/utils/fgadmin/src/CMakeLists.txt b/utils/fgadmin/src/CMakeLists.txt new file mode 100644 index 000000000..045ab0b4f --- /dev/null +++ b/utils/fgadmin/src/CMakeLists.txt @@ -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)