qmlfrontend/CMakeLists.txt
author raptor <buckyballreaction@gmail.com>
Tue, 13 Aug 2019 13:20:28 -0600
branch0.9.25
changeset 15332 9a545985360b
parent 14290 92e5682810d4
child 14371 90bd2c331703
permissions -rw-r--r--
Remove usage of macdeployqt in favor of CMake BundleUtilities. BundleUtilities properly finds all dependencies and adds them to the .app automatically. It also fixes rpath and install_name issues for any of the binaries or dependencies

cmake_minimum_required(VERSION 2.8.12)

project(qmlfrontend LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

find_package(Qt5 COMPONENTS Core Quick REQUIRED)

add_executable(${PROJECT_NAME} "main.cpp" "qml.qrc"
    "hwengine.cpp" "hwengine.h"
    "game_config.cpp" "game_config.h"
    "game_view.cpp" "game_view.h"
    "team.cpp" "team.h"
    "engine_instance.cpp" "engine_instance.h"
    "preview_image_provider.cpp" "preview_image_provider.h"
    "engine_interface.h")

target_link_libraries(${PROJECT_NAME} Qt5::Core Qt5::Quick)