1
0
Fork 0

Cmake: add fgadmin to the project

This commit is contained in:
Frederic Bouvier 2011-01-05 17:51:46 +01:00
parent 1c792fb97c
commit ef4c4ac1f5
3 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,4 @@
add_subdirectory(TerraSync)
add_subdirectory(fgviewer)
add_subdirectory(GPSsmooth)
add_subdirectory(fgadmin)

View file

@ -0,0 +1 @@
add_subdirectory(src)

View 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)