1
0
Fork 0

Main: Formatting standardization for the src/Main/CMakeLists.txt file.

This includes spacing, tab to space replacements, and alphabetical ordering.
This commit is contained in:
Edward d'Auvergne 2018-03-02 22:18:28 +01:00
parent 8b438cb97e
commit 941c5dc8f2

View file

@ -1,15 +1,15 @@
if (MSVC) if(MSVC)
set( RESOURCE_FILE flightgear.rc ) set(RESOURCE_FILE flightgear.rc)
endif (MSVC) endif(MSVC)
set(SOURCES set(SOURCES
bootstrap.cxx bootstrap.cxx
fg_commands.cxx fg_commands.cxx
fg_scene_commands.cxx
fg_init.cxx fg_init.cxx
fg_io.cxx fg_io.cxx
fg_os_common.cxx fg_os_common.cxx
fg_scene_commands.cxx
fg_props.cxx fg_props.cxx
FGInterpolator.cxx FGInterpolator.cxx
globals.cxx globals.cxx
@ -17,15 +17,16 @@ set(SOURCES
logger.cxx logger.cxx
main.cxx main.cxx
options.cxx options.cxx
util.cxx
positioninit.cxx positioninit.cxx
subsystemFactory.cxx
screensaver_control.cxx screensaver_control.cxx
subsystemFactory.cxx
util.cxx
${RESOURCE_FILE} ${RESOURCE_FILE}
${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.cxx ${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.cxx
) )
set(HEADERS set(HEADERS
AircraftDirVisitorBase.hxx
fg_commands.hxx fg_commands.hxx
fg_init.hxx fg_init.hxx
fg_io.hxx fg_io.hxx
@ -36,23 +37,22 @@ set(HEADERS
logger.hxx logger.hxx
main.hxx main.hxx
options.hxx options.hxx
util.hxx
positioninit.hxx positioninit.hxx
subsystemFactory.hxx
AircraftDirVisitorBase.hxx
screensaver_control.hxx screensaver_control.hxx
subsystemFactory.hxx
util.hxx
${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.hxx ${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.hxx
) )
# On Windows, make sure fgrcc can be run (it needs third-party libraries) # On Windows, make sure fgrcc can be run (it needs third-party libraries)
if (MSVC) if(MSVC)
if (MSVC_3RDPARTY_ROOT AND MSVC_3RDPARTY_DIR) if(MSVC_3RDPARTY_ROOT AND MSVC_3RDPARTY_DIR)
set(CMAKE_MSVCIDE_RUN_PATH ${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/bin) set(CMAKE_MSVCIDE_RUN_PATH ${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/bin)
else () else()
message(FATAL_ERROR message(FATAL_ERROR
"Either MSVC_3RDPARTY_ROOT or MSVC_3RDPARTY_DIR is empty or unset") "Either MSVC_3RDPARTY_ROOT or MSVC_3RDPARTY_DIR is empty or unset")
endif () endif()
endif () endif()
add_custom_command( add_custom_command(
OUTPUT ${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.cxx OUTPUT ${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.cxx
@ -60,7 +60,7 @@ add_custom_command(
COMMAND fgrcc --root=${CMAKE_SOURCE_DIR} --output-cpp-file=${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.cxx --init-func-name=initFlightGearEmbeddedResources --output-header-file=${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.hxx --output-header-identifier=_FG_FLIGHTGEAR_EMBEDDED_RESOURCES ${CMAKE_SOURCE_DIR}/src/EmbeddedResources/FlightGear-resources.xml COMMAND fgrcc --root=${CMAKE_SOURCE_DIR} --output-cpp-file=${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.cxx --init-func-name=initFlightGearEmbeddedResources --output-header-file=${CMAKE_BINARY_DIR}/src/EmbeddedResources/FlightGear-resources.hxx --output-header-identifier=_FG_FLIGHTGEAR_EMBEDDED_RESOURCES ${CMAKE_SOURCE_DIR}/src/EmbeddedResources/FlightGear-resources.xml
DEPENDS DEPENDS
fgrcc ${CMAKE_SOURCE_DIR}/src/EmbeddedResources/FlightGear-resources.xml fgrcc ${CMAKE_SOURCE_DIR}/src/EmbeddedResources/FlightGear-resources.xml
) )
get_property(FG_SOURCES GLOBAL PROPERTY FG_SOURCES) get_property(FG_SOURCES GLOBAL PROPERTY FG_SOURCES)
get_property(FG_HEADERS GLOBAL PROPERTY FG_HEADERS) get_property(FG_HEADERS GLOBAL PROPERTY FG_HEADERS)
@ -96,7 +96,7 @@ add_executable(fgfs WIN32 MACOSX_BUNDLE
${SOURCES} ${FG_SOURCES} ${FG_HEADERS} ${HEADERS}) ${SOURCES} ${FG_SOURCES} ${FG_HEADERS} ${HEADERS})
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
# MacOSX bundle packagaing # MacOSX bundle packaging
if(APPLE) if(APPLE)
execute_process(COMMAND date +%Y execute_process(COMMAND date +%Y
@ -143,38 +143,43 @@ if(ENABLE_JSBSIM)
target_link_libraries(fgfs JSBSim) target_link_libraries(fgfs JSBSim)
endif() endif()
if(ENABLE_IAX) if(ENABLE_IAX)
target_link_libraries(fgfs iaxclient_lib ${OPENAL_LIBRARY}) target_link_libraries(fgfs iaxclient_lib ${OPENAL_LIBRARY})
endif() endif()
if(USE_DBUS) if(USE_DBUS)
target_link_libraries(fgfs ${DBUS_LIBRARIES}) target_link_libraries(fgfs ${DBUS_LIBRARIES})
endif() endif()
if(FG_HAVE_GPERFTOOLS) if(FG_HAVE_GPERFTOOLS)
include_directories(${GooglePerfTools_INCLUDE_DIR}) include_directories(${GooglePerfTools_INCLUDE_DIR})
target_link_libraries(fgfs ${GooglePerfTools_LIBRARIES}) target_link_libraries(fgfs ${GooglePerfTools_LIBRARIES})
endif() endif()
if (CRASHRPT_FOUND) if(CRASHRPT_FOUND)
target_link_libraries(fgfs ${CRASHRPT_LIBRARY}) target_link_libraries(fgfs ${CRASHRPT_LIBRARY})
endif() endif()
if(X11_FOUND) if(X11_FOUND)
target_link_libraries(fgfs ${X11_LIBRARIES}) target_link_libraries(fgfs ${X11_LIBRARIES})
endif() endif()
target_link_libraries(fgfs target_link_libraries(fgfs
SimGearCore SimGearScene SimGearCore
SimGearScene
${EVENT_INPUT_LIBRARIES}
${GDAL_LIBRARIES}
${HLA_LIBRARIES}
${OPENGL_LIBRARIES}
${OPENSCENEGRAPH_LIBRARIES}
${PLATFORM_LIBS}
${PLIB_LIBRARIES}
${SQLITE3_LIBRARY} ${SQLITE3_LIBRARY}
${SIMGEAR_LIBRARIES} ${SIMGEAR_LIBRARIES}
${OPENSCENEGRAPH_LIBRARIES}
${OPENGL_LIBRARIES}
${PLIB_LIBRARIES}
${HLA_LIBRARIES}
${GDAL_LIBRARIES}
${EVENT_INPUT_LIBRARIES}
${PLATFORM_LIBS}
) )
if(ENABLE_FLITE) if(ENABLE_FLITE)
if(SYSTEM_HTS_ENGINE) if(SYSTEM_HTS_ENGINE)
target_link_libraries(fgfs flite_hts ${HTS_ENGINE_LIBRARIES}) target_link_libraries(fgfs flite_hts ${HTS_ENGINE_LIBRARIES})
@ -183,12 +188,12 @@ if(ENABLE_FLITE)
endif() endif()
endif() endif()
if (Qt5Core_FOUND) if(Qt5Core_FOUND)
target_link_libraries(fgfs Qt5::Core Qt5::Widgets fglauncher fgqmlui) target_link_libraries(fgfs Qt5::Core Qt5::Widgets fglauncher fgqmlui)
set_property(TARGET fgfs PROPERTY AUTOMOC ON) set_property(TARGET fgfs PROPERTY AUTOMOC ON)
endif() endif()
if (USE_AEONWAVE) if(USE_AEONWAVE)
target_link_libraries(fgfs ${AAX_LIBRARY}) target_link_libraries(fgfs ${AAX_LIBRARY})
endif() endif()