mirror of
https://github.com/overte-org/overte.git
synced 2025-05-28 13:40:25 +02:00
75 lines
2.8 KiB
CMake
75 lines
2.8 KiB
CMake
set (TARGET_NAME nitpick)
|
|
project(${TARGET_NAME})
|
|
|
|
# Automatically run UIC and MOC. This replaces the older WRAP macros
|
|
SET (CMAKE_AUTOUIC ON)
|
|
SET (CMAKE_AUTOMOC ON)
|
|
|
|
setup_hifi_project (Core Widgets Network Xml)
|
|
link_hifi_libraries ()
|
|
|
|
# FIX: Qt was built with -reduce-relocations
|
|
if (Qt5_POSITION_INDEPENDENT_CODE)
|
|
SET (CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
endif()
|
|
|
|
# Qt includes
|
|
include_directories (${CMAKE_CURRENT_SOURCE_DIR})
|
|
include_directories (${Qt5Core_INCLUDE_DIRS})
|
|
include_directories (${Qt5Widgets_INCLUDE_DIRS})
|
|
|
|
set (QT_LIBRARIES Qt5::Core Qt5::Widgets QT::Gui Qt5::Xml)
|
|
|
|
if (WIN32)
|
|
# Do not show Console
|
|
set_property (TARGET nitpick PROPERTY WIN32_EXECUTABLE true)
|
|
endif()
|
|
|
|
target_zlib()
|
|
add_dependency_external_projects (quazip)
|
|
find_package (QuaZip REQUIRED)
|
|
target_include_directories( ${TARGET_NAME} SYSTEM PUBLIC ${QUAZIP_INCLUDE_DIRS})
|
|
target_link_libraries(${TARGET_NAME} ${QUAZIP_LIBRARIES})
|
|
|
|
package_libraries_for_deployment()
|
|
|
|
if (WIN32)
|
|
add_paths_to_fixup_libs (${QUAZIP_DLL_PATH})
|
|
|
|
find_program(WINDEPLOYQT_COMMAND windeployqt PATHS ${QT_DIR}/bin NO_DEFAULT_PATH)
|
|
|
|
if (NOT WINDEPLOYQT_COMMAND)
|
|
message(FATAL_ERROR "Could not find windeployqt at ${QT_DIR}/bin. windeployqt is required.")
|
|
endif ()
|
|
|
|
# add a post-build command to call windeployqt to copy Qt plugins
|
|
add_custom_command(
|
|
TARGET ${TARGET_NAME}
|
|
POST_BUILD
|
|
COMMAND CMD /C "SET PATH=%PATH%;${QT_DIR}/bin && ${WINDEPLOYQT_COMMAND} ${EXTRA_DEPLOY_OPTIONS} $<$<OR:$<CONFIG:Release>,$<CONFIG:MinSizeRel>,$<CONFIG:RelWithDebInfo>>:--release> \"$<TARGET_FILE:${TARGET_NAME}>\""
|
|
)
|
|
|
|
# add a custom command to copy the empty Apps/Data High Fidelity folder (i.e. - a valid folder with no entities)
|
|
# this also copied to the containing folder, to facilitate running from Visual Studio
|
|
add_custom_command(
|
|
TARGET ${TARGET_NAME}
|
|
POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}" -E copy_directory "${CMAKE_CURRENT_SOURCE_DIR}/AppDataHighFidelity" "$<TARGET_FILE_DIR:${TARGET_NAME}>/AppDataHighFidelity"
|
|
COMMAND "${CMAKE_COMMAND}" -E copy_directory "${CMAKE_CURRENT_SOURCE_DIR}/AppDataHighFidelity" "AppDataHighFidelity"
|
|
)
|
|
|
|
# add a custom command to copy the SSL DLLs
|
|
add_custom_command(
|
|
TARGET ${TARGET_NAME}
|
|
POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}" -E copy_directory "$ENV{VCPKG_ROOT}/installed/x64-windows/bin" "$<TARGET_FILE_DIR:${TARGET_NAME}>"
|
|
)
|
|
elseif (APPLE)
|
|
# add a custom command to copy the empty Apps/Data High Fidelity folder (i.e. - a valid folder with no entities)
|
|
add_custom_command(
|
|
TARGET ${TARGET_NAME}
|
|
POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}" -E copy_directory "${CMAKE_CURRENT_SOURCE_DIR}/AppDataHighFidelity" "$<TARGET_FILE_DIR:${TARGET_NAME}>/AppDataHighFidelity"
|
|
)
|
|
endif ()
|
|
|