qmlfrontend/CMakeLists.txt
author nemo
Wed, 21 Nov 2018 15:41:43 -0500
changeset 14266 9b5a8147386f
parent 14154 8354b390f1a2
child 14290 92e5682810d4
permissions -rw-r--r--
I think this is correct way to use iterate over it as a hashmap. don't have much lua practice

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"
    "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)