-
Notifications
You must be signed in to change notification settings - Fork 0
/
gomoku.pro
88 lines (64 loc) · 2.33 KB
/
gomoku.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
!versionAtLeast(QT_VERSION, 5.10.0):error("Requires Qt version 5.10.0 or greater.")
TEMPLATE +=app
QT += core gui concurrent qml quick quickcontrols2
VERSION = 0.3
# allows use of version variable elsewhere
DEFINES += "VERSION=$$VERSION"
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
LANGUAGE = C++
CONFIG += c++17 resources_big cmdline qml_debug
include(gitversion.pri)
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH += $$PWD
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
#don't use precompiled headers https://www.kdab.com/beware-of-qt-module-wide-includes/
SOURCES += \
src/backend.cpp \
src/main.cpp \
src/tilemodel.cpp
HEADERS += \
src/backend.h \
src/tilemodel.h
RESOURCES += \
qml.qrc \
images.qrc \
fonts.qrc
# resources.qrc \
#TRANSLATIONS += \
# i18n/five_in_a_row_ru_RU.ts
# Setting the application icon
#win32: RC_ICONS = res/icons/five_in_a_row-qt.ico # On Windows
#macx: ICON = res/icons/five_in_a_row-qt.ico # On Mac OSX
#android {
# QT += androidextras
# disable-xcb {
# message("The disable-xcb option has been deprecated. Please use disable-desktop instead.")
# CONFIG += disable-desktop
# }
# CONFIG(release, debug|release) {
# CONFIG += qtquickcompiler
# }
# OTHER_FILES += \
# android/AndroidManifest.xml \
# android/build.gradle \
# android/gradle.properties \
# android/gradlew \
# android/gradlew.bat \
# android/gradle/wrapper/gradle-wrapper.jar \
# android/gradle/wrapper/gradle-wrapper.properties \
# android/res/values/libs.xml
#ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android/source
#contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
# ANDROID_EXTRA_LIBS = \
# $$PWD/android/3rdparty/openssl/armeabi-v7a/libcrypto_1_1.so \
# $$PWD/android/3rdparty/openssl/armeabi-v7a/libssl_1_1.so
# }
#contains(ANDROID_TARGET_ARCH,arm64-v8a) {
#ANDROID_EXTRA_LIBS = \
# $$PWD/android/3rdparty/openssl/arm64-v8a/libcrypto_1_1.so \
# $$PWD/android/3rdparty/openssl/arm64-v8a/libssl_1_1.so
# }
#}
# Default rules for deployment.