File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 13
13
* .a
14
14
15
15
# ide specific files
16
- * .pro
16
+ # *.pro
17
17
* .user
18
18
* .directory
19
19
build- *
Original file line number Diff line number Diff line change
1
+ TEMPLATE = app
2
+ CONFIG += console
3
+ CONFIG -= app_bundle
4
+ CONFIG -= qt
5
+ CONFIG += c++11
6
+
7
+ SOURCES += main.cpp \
8
+ xinputsimulatorimpl.cpp \
9
+ xinputsimulator.cpp \
10
+ xinputsimulatorimpllinux.cpp \
11
+ notimplementedexception.cpp \
12
+ xinputsimulatorimplmacos.cpp \
13
+ xinputsimulatorimplwin.cpp
14
+
15
+ HEADERS += \
16
+ xinputsimulator.h \
17
+ xinputsimulatorimpl.h \
18
+ xinputsimulatorimpllinux.h \
19
+ notimplementedexception.h \
20
+ xinputsimulatorimplmacos.h \
21
+ xinputsimulatorimplwin.h
22
+
23
+ macx {
24
+ # mac only
25
+ LIBS += -framework ApplicationServices
26
+ }
27
+ unix :!macx{
28
+ # linux only
29
+ LIBS += -lX11
30
+ }
31
+ win32 {
32
+ # windows only
33
+ LIBS += " C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib\User32.Lib"
34
+ }
You can’t perform that action at this time.
0 commit comments