-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVisualWindowsController.pro
74 lines (55 loc) · 1.88 KB
/
VisualWindowsController.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
QT += core gui winextras
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
# 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
TARGET = VisualWindowsController
SOURCES += \
AboutDialog/aboutdialog.cpp \
BinsetEdit/BinsetEdit.cpp \
ProcessController/ProcessController.cpp \
RadixLineEdit/RadixLineEdit.cpp \
SingleColorWidget/SingleColorWidget.cpp \
WindowController/CursorController.cpp \
WindowController/WindowController.cpp \
main.cpp \
mainwindow.cpp \
tabCursor/CursorColorWidget.cpp \
tabProcess/tabProcess.cpp \
tabSelect/Basic.cpp \
tabSelect/Dynamic.cpp \
tabSelect/Static.cpp \
tabWindow/ChangeWindow.cpp
HEADERS += \
AboutDialog/aboutdialog.h \
BinsetEdit/BinsetEdit.h \
ProcessController/ProcessController.h \
RadixLineEdit/RadixLineEdit.h \
SingleColorWidget/SingleColorWidget.h \
WindowController/CursorController.h \
WindowController/WindowController.h \
mainwindow.h
LIBS += \
User32.lib \
Gdi32.lib
FORMS += \
AboutDialog/aboutdialog.ui \
mainwindow.ui
TRANSLATIONS += \
VisualWindowsController_zh_CN.ts
CONFIG += lrelease
CONFIG += embed_translations
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
Resource.qrc
VERSION = 1.0.0
RC_ICONS = Resource/VWC.ico
QMAKE_TARGET_COMPANY = "LoveRain"
QMAKE_TARGET_PRODUCT = "VisualWindowsController"
QMAKE_TARGET_DESCRIPTION = "LoveRain Visual Windows Controller"
QMAKE_TARGET_COPYRIGHT = "Copyright (c) 2023-2023 LoveRain Yanghuanhuan 3347484963@qq.com. All rights reserved."
RC_LANG = 0x0004