2018-03-25 12:18:24 +00:00
|
|
|
function(setup_fgfs_libraries target)
|
|
|
|
get_property(FG_LIBS GLOBAL PROPERTY FG_LIBS)
|
|
|
|
#message(STATUS "fg libs ${FG_LIBS}")
|
|
|
|
#message(STATUS "OSG libs ${OPENSCENEGRAPH_LIBRARIES}")
|
|
|
|
#message(STATUS "SG libs ${SIMGEAR_LIBRARIES}")
|
|
|
|
|
|
|
|
if(RTI_FOUND)
|
2020-03-15 22:31:05 +00:00
|
|
|
set(HLA_LIBRARIES ${RTI_LDFLAGS})
|
2018-03-25 12:18:24 +00:00
|
|
|
else()
|
|
|
|
set(HLA_LIBRARIES "")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_JSBSIM)
|
|
|
|
target_link_libraries(${target} JSBSim)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_IAX)
|
2020-08-19 13:49:50 +00:00
|
|
|
target_link_libraries(${target} iaxclient_lib)
|
2018-03-25 12:18:24 +00:00
|
|
|
endif()
|
|
|
|
|
2020-08-27 21:33:08 +00:00
|
|
|
if(HAVE_DBUS)
|
|
|
|
# ALIAS doesn't work with CMake 3.10, so we need
|
|
|
|
# variable to store the target name
|
|
|
|
target_link_libraries(${target} ${dbus_target})
|
2019-05-27 10:37:35 +00:00
|
|
|
endif()
|
|
|
|
|
2018-03-25 12:18:24 +00:00
|
|
|
if(X11_FOUND)
|
|
|
|
target_link_libraries(${target} ${X11_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
|
2020-08-21 11:13:10 +00:00
|
|
|
target_link_libraries(${target} fgsqlite3 fgvoicesynth fgembeddedresources)
|
2020-08-19 13:49:50 +00:00
|
|
|
|
2018-03-25 12:18:24 +00:00
|
|
|
target_link_libraries(${target}
|
|
|
|
SimGearCore
|
|
|
|
SimGearScene
|
2020-08-19 13:49:50 +00:00
|
|
|
Boost::boost
|
2018-03-25 12:18:24 +00:00
|
|
|
${EVENT_INPUT_LIBRARIES}
|
|
|
|
${HLA_LIBRARIES}
|
|
|
|
${OPENGL_LIBRARIES}
|
|
|
|
${OPENSCENEGRAPH_LIBRARIES}
|
|
|
|
${PLATFORM_LIBS}
|
|
|
|
${PLIB_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
2020-08-22 20:33:57 +00:00
|
|
|
if (ENABLE_SWIFT)
|
2020-08-27 21:33:08 +00:00
|
|
|
# ALIAS doesn't work with CMake 3.10, so we need
|
|
|
|
# variable to store the target name
|
|
|
|
target_link_libraries(${target} ${dbus_target} ${libEvent_target})
|
2020-08-22 20:33:57 +00:00
|
|
|
endif()
|
|
|
|
|
2016-01-13 04:44:28 +00:00
|
|
|
if (ENABLE_PLIB_JOYSTICK)
|
|
|
|
target_link_libraries(${target} PLIBJoystick)
|
|
|
|
endif()
|
2018-03-25 12:18:24 +00:00
|
|
|
|
2020-03-13 11:27:11 +00:00
|
|
|
target_link_libraries(${target} PLIBFont)
|
|
|
|
|
2020-08-19 13:49:50 +00:00
|
|
|
if (TARGET fglauncher)
|
2018-03-25 12:18:24 +00:00
|
|
|
target_link_libraries(${target} Qt5::Core Qt5::Widgets fglauncher fgqmlui)
|
|
|
|
set_property(TARGET ${target} PROPERTY AUTOMOC ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
|
|
|
target_link_libraries(${target} execinfo)
|
|
|
|
endif()
|
2019-08-12 16:52:53 +00:00
|
|
|
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD")
|
|
|
|
target_link_libraries(${target} execinfo)
|
|
|
|
endif()
|
2018-03-25 12:18:24 +00:00
|
|
|
endfunction()
|