author | unc0rr |
Wed, 10 Jan 2018 23:49:47 +0100 | |
branch | qmlfrontend |
changeset 12890 | 9c259fb4d405 |
parent 12876 | b544bbbd0696 |
permissions | -rw-r--r-- |
12854 | 1 |
cmake_minimum_required(VERSION 2.8.12) |
2 |
||
3 |
project(qmlfrontend LANGUAGES CXX) |
|
4 |
||
5 |
set(CMAKE_INCLUDE_CURRENT_DIR ON) |
|
6 |
set(CMAKE_AUTOMOC ON) |
|
7 |
set(CMAKE_AUTORCC ON) |
|
8 |
||
9 |
find_package(Qt5 COMPONENTS Core Quick REQUIRED) |
|
10 |
||
12861 | 11 |
add_executable(${PROJECT_NAME} "main.cpp" "qml.qrc" |
12 |
"hwengine.cpp" "hwengine.h" |
|
13 |
"gameconfig.cpp" "gameconfig.h" |
|
14 |
"runqueue.cpp" "runqueue.h" |
|
12876
b544bbbd0696
Break engine completely and make it render in frontend window (no actual rendering yet, just white screen)
unc0rr
parents:
12863
diff
changeset
|
15 |
"gameview.cpp" "gameview.h" |
12863 | 16 |
"team.cpp" "team.h" |
12861 | 17 |
"previewimageprovider.cpp" "previewimageprovider.h" |
18 |
"flib.h") |
|
12854 | 19 |
|
20 |
target_link_libraries(${PROJECT_NAME} Qt5::Core Qt5::Quick) |