Minor CMake packaging tweaks, more to follow.
This commit is contained in:
parent
dde3576cfb
commit
76c388f7cb
3 changed files with 28 additions and 5 deletions
|
@ -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
|
||||
#-----------------------------------------------------------------------------
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue