qmlfrontend/CMakeLists.txt
author Wuzzy <Wuzzy2@mail.ru>
Sun, 05 Jul 2020 01:58:48 +0200
branchui-scaling
changeset 15671 f28ca5a87682
parent 15047 773beead236f
child 15894 ebc50f21e849
permissions -rw-r--r--
[backport] Chat scale: Move setting to Video tab Backport of 9455b9e56aee to branch ui-scaling by sheepluva

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"
    "preview_acceptor.cpp" "preview_acceptor.h"
    "net_session.cpp" "net_session.h"
    "players_model.cpp" "players_model.h"
    "rooms_model.cpp" "rooms_model.h"
    )

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