mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
feat: Use conan for dependency management
This commit is contained in:
@@ -256,7 +256,8 @@ target_link_libraries(core
|
||||
misc
|
||||
input
|
||||
sound
|
||||
externals_sodium
|
||||
Opus::opus
|
||||
libsodium::libsodium
|
||||
msgpack-cxx
|
||||
config
|
||||
PRIVATE
|
||||
@@ -266,7 +267,7 @@ target_link_libraries(core
|
||||
)
|
||||
|
||||
if(SWIFT_VATSIM_SUPPORT)
|
||||
target_link_libraries(core PUBLIC externals_vatsim_auth)
|
||||
target_link_libraries(core PUBLIC VATSIMAuth::VATSIMAuth)
|
||||
endif()
|
||||
|
||||
target_compile_definitions(core PRIVATE BUILD_SWIFT_CORE_LIB)
|
||||
|
||||
@@ -20,7 +20,7 @@ target_include_directories(simulatorflightgear PUBLIC ${PROJECT_SOURCE_DIR}/src)
|
||||
target_link_libraries(simulatorflightgear
|
||||
PUBLIC
|
||||
misc
|
||||
externals_dbus
|
||||
dbus-1
|
||||
plugincommon
|
||||
)
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ target_include_directories(simulatorxplane PUBLIC ${PROJECT_SOURCE_DIR}/src)
|
||||
target_link_libraries(simulatorxplane
|
||||
PUBLIC
|
||||
misc
|
||||
externals_dbus
|
||||
dbus-1
|
||||
plugincommon
|
||||
)
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@ target_link_libraries(sound
|
||||
config
|
||||
Qt::Multimedia
|
||||
misc
|
||||
externals_opus
|
||||
Opus::opus
|
||||
)
|
||||
|
||||
install(TARGETS sound
|
||||
|
||||
@@ -92,39 +92,17 @@ target_include_directories(xswiftbus PUBLIC
|
||||
|
||||
|
||||
if(SWIFT_WIN64)
|
||||
target_link_libraries(xswiftbus PUBLIC externals_xplm externals_xpwidgets)
|
||||
target_link_libraries(xswiftbus PUBLIC XPSDK::XPLM XPSDK::XPWidgets)
|
||||
elseif(APPLE)
|
||||
target_link_libraries(xswiftbus PRIVATE externals_xplm externals_xpwidgets "-framework Cocoa" "-framework CoreFoundation")
|
||||
target_link_libraries(xswiftbus PRIVATE XPSDK::XPLM XPSDK::XPWidgets "-framework Cocoa" "-framework CoreFoundation")
|
||||
target_compile_definitions(xswiftbus PRIVATE XUTILS_EXCLUDE_MAC_CRAP)
|
||||
elseif(UNIX)
|
||||
target_link_libraries(xswiftbus PUBLIC XPSDK::XPLM XPSDK::XPWidgets)
|
||||
# Flags needed because there is no XPLM link library
|
||||
target_link_options(xswiftbus PUBLIC -nodefaultlibs -Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/xswiftbus.map)
|
||||
endif()
|
||||
|
||||
|
||||
target_link_libraries(xswiftbus PUBLIC externals_event nlohmann_json::nlohmann_json externals_dbus externals_xplm)
|
||||
|
||||
|
||||
if(SWIFT_WIN32)
|
||||
set(PNG_LIBRARIES ${swift_SOURCE_DIR}/third_party/externals/win32-msvc/32/lib/png.lib)
|
||||
set(ZLIB_LIBRARIES ${swift_SOURCE_DIR}/third_party/externals/win32-msvc/32/lib/z.lib)
|
||||
elseif(SWIFT_WIN64)
|
||||
set(PNG_LIBRARIES ${swift_SOURCE_DIR}/third_party/externals/win32-msvc/64/lib/png.lib)
|
||||
set(ZLIB_LIBRARIES ${swift_SOURCE_DIR}/third_party/externals/win32-msvc/64/lib/z.lib)
|
||||
|
||||
else()
|
||||
find_package(PNG REQUIRED)
|
||||
find_package(ZLIB REQUIRED)
|
||||
endif()
|
||||
|
||||
# Externals required by xplanemp2
|
||||
if(WIN32)
|
||||
find_package(OpenGL REQUIRED)
|
||||
|
||||
target_link_libraries(xswiftbus PUBLIC ${PNG_LIBRARIES} ${ZLIB_LIBRARIES} OpenGL::GL OpenGL::GLU)
|
||||
elseif(UNIX AND NOT APPLE)
|
||||
target_link_libraries(xswiftbus PUBLIC ${PNG_LIBRARIES} ${ZLIB_LIBRARIES})
|
||||
endif()
|
||||
target_link_libraries(xswiftbus PUBLIC libevent::core nlohmann_json::nlohmann_json dbus-1)
|
||||
|
||||
if(MSVC)
|
||||
target_compile_definitions(xswiftbus PRIVATE _CRT_SECURE_NO_WARNINGS)
|
||||
@@ -186,10 +164,19 @@ if(WIN32)
|
||||
set(DBUS_SESSION_CONF_MAYBE_AUTH_EXTERNAL "<!--<auth>EXTERNAL</auth>-->")
|
||||
configure_file(${swift_SOURCE_DIR}/src/misc/share/dbus-1/session.conf.in ${CMAKE_CURRENT_BINARY_DIR}/session.conf)
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/session.conf DESTINATION xswiftbus/64/share/dbus-1/)
|
||||
|
||||
install(FILES ${swift_SOURCE_DIR}/third_party/externals/win32-msvc/64/bin/dbus-daemon.exe DESTINATION xswiftbus/64/)
|
||||
install(FILES ${swift_SOURCE_DIR}/third_party/externals/win32-msvc/64/lib/expat.dll DESTINATION xswiftbus/64/)
|
||||
endif()
|
||||
|
||||
install(DIRECTORY LegacyData DESTINATION xswiftbus)
|
||||
install(FILES xswiftbus.conf ${CMAKE_CURRENT_BINARY_DIR}/readme.txt DESTINATION xswiftbus)
|
||||
|
||||
if (DEFINED SWIFT_DEV_X_PLANE_PLUGINS_DIR)
|
||||
# Copy xswiftbus to X-Plane folder for development
|
||||
add_custom_target(copy_xswiftbus
|
||||
DEPENDS xswiftbus
|
||||
COMMAND ${CMAKE_COMMAND} --install ${CMAKE_BINARY_DIR}
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_INSTALL_PREFIX}/xswiftbus ${SWIFT_DEV_X_PLANE_PLUGINS_DIR}/xswiftbus
|
||||
|
||||
COMMENT "Installing xswiftbus into X-Plane plugins dir"
|
||||
|
||||
)
|
||||
endif ()
|
||||
|
||||
Submodule src/xswiftbus/xplanemp2 updated: db6d1cbb73...8b07d1daf8
Reference in New Issue
Block a user