mirror of
https://github.com/overte-org/overte.git
synced 2025-05-28 03:30:26 +02:00
57 lines
No EOL
1.9 KiB
CMake
57 lines
No EOL
1.9 KiB
CMake
set(TARGET_NAME auto-tester)
|
|
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)
|
|
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)
|
|
|
|
# Find all sources files
|
|
file (GLOB_RECURSE SOURCES src/*.cpp)
|
|
file (GLOB_RECURSE HEADERS src/*.h)
|
|
file (GLOB_RECURSE UIS src/ui/*.ui)
|
|
|
|
if (WIN32)
|
|
# Do not show Console
|
|
set_property(TARGET auto-tester PROPERTY WIN32_EXECUTABLE true)
|
|
endif()
|
|
|
|
add_executable(PROJECT_NAME ${SOURCES} ${HEADERS} ${UIS})
|
|
|
|
target_link_libraries(PROJECT_NAME ${QT_LIBRARIES})
|
|
|
|
# Copy required dll's.
|
|
add_custom_command(TARGET auto-tester POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:Qt5::Core> $<TARGET_FILE_DIR:auto-tester>
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:Qt5::Gui> $<TARGET_FILE_DIR:auto-tester>
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:Qt5::Widgets> $<TARGET_FILE_DIR:auto-tester>
|
|
)
|
|
|
|
if (WIN32)
|
|
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}>\""
|
|
)
|
|
endif () |