-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoClicker.pro
More file actions
39 lines (34 loc) · 895 Bytes
/
Copy pathAutoClicker.pro
File metadata and controls
39 lines (34 loc) · 895 Bytes
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
QT += core widgets
CONFIG += c++17
TARGET = AutoClicker
TEMPLATE = app
SOURCES += \
src/main.cpp \
src/ui/mainwindow.cpp \
src/ui/homewindow.cpp \
src/ui/normalclickwindow.cpp \
src/engine/normalclickerengine.cpp \
src/ui/overlaywindow.cpp \
src/engine/clickerengine.cpp \
src/core/configmanager.cpp \
src/core/appsettings.cpp
HEADERS += \
src/ui/mainwindow.h \
src/ui/homewindow.h \
src/ui/normalclickwindow.h \
src/engine/normalclickerengine.h \
src/ui/overlaywindow.h \
src/engine/clickerengine.h \
src/core/configmanager.h \
src/core/clickpoint.h \
src/core/appsettings.h \
src/util/hotkey_utils.h
INCLUDEPATH += src
win32 {
LIBS += -luser32
# Build as Windows application (no console window)
CONFIG += windows
RC_ICONS = src/logo/ClickerProMax.ico
}
# Output directory
DESTDIR = $$OUT_PWD/bin