diff --git a/CMakeLists.txt b/CMakeLists.txt index 15b8cb062..bd05dd1e3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -262,6 +262,15 @@ configure_file ( add_subdirectory(src) add_subdirectory(utils) +set (INSTALL_DOCS + README + README.OpenAL + README.plib + README.OSG + README.SimGear) + +INSTALL(FILES ${INSTALL_DOCS} DESTINATION doc OPTIONAL) + #----------------------------------------------------------------------------- ### uninstall target #----------------------------------------------------------------------------- diff --git a/utils/GPSsmooth/CMakeLists.txt b/utils/GPSsmooth/CMakeLists.txt index 2cd60a8cc..ecfdde70f 100644 --- a/utils/GPSsmooth/CMakeLists.txt +++ b/utils/GPSsmooth/CMakeLists.txt @@ -1,7 +1,12 @@ -add_executable(GPSsmooth gps.cxx gps_main.cxx) -add_executable(MIDGsmooth MIDG-II.cxx MIDG_main.cxx) -add_executable(UGsmooth UGear.cxx UGear_command.cxx UGear_main.cxx UGear_telnet.cxx) +add_executable(GPSsmooth gps.cxx gps.hxx gps_main.cxx) +add_executable(MIDGsmooth MIDG-II.cxx MIDG-II.hxx MIDG_main.cxx) +add_executable(UGsmooth + UGear.cxx UGear.hxx + UGear_command.cxx UGear_command.hxx + UGear_main.cxx + UGear_telnet.cxx + UGear_telnet.hxx) target_link_libraries(GPSsmooth ${SIMGEAR_CORE_LIBRARIES} diff --git a/utils/fgpanel/CMakeLists.txt b/utils/fgpanel/CMakeLists.txt index ed0b991fb..2678babe6 100644 --- a/utils/fgpanel/CMakeLists.txt +++ b/utils/fgpanel/CMakeLists.txt @@ -6,14 +6,23 @@ if(GLUT_FOUND) message(STATUS "found glut") add_executable(fgpanel main.cxx + ApplicationProperties.hxx FGGLApplication.cxx + FGGLApplication.hxx FGPanelApplication.cxx + FGPanelApplication.hxx FGPNGTextureLoader.cxx - FGRGBTextureLoader.cxx + FGPNGTextureLoader.hxx + FGRGBTextureLoader.cxx + FGRGBTextureLoader.hxx FGPanelProtocol.cxx + FGPanelProtocol.hxx FGFontCache.cxx + FGFontCache.hxx panel.cxx - panel_io.cxx) + panel.hxx + panel_io.cxx + panel_io.hxx) target_link_libraries(fgpanel ${PNG_LIBRARIES}