Cmake: add fgadmin to the project
This commit is contained in:
parent
1c792fb97c
commit
ef4c4ac1f5
3 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
add_subdirectory(TerraSync)
|
||||
add_subdirectory(fgviewer)
|
||||
add_subdirectory(GPSsmooth)
|
||||
add_subdirectory(fgadmin)
|
||||
|
|
1
utils/fgadmin/CMakeLists.txt
Normal file
1
utils/fgadmin/CMakeLists.txt
Normal file
|
@ -0,0 +1 @@
|
|||
add_subdirectory(src)
|
11
utils/fgadmin/src/CMakeLists.txt
Normal file
11
utils/fgadmin/src/CMakeLists.txt
Normal file
|
@ -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)
|
Loading…
Add table
Reference in a new issue