forked from sehraf/Lua4RS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLua4RS.pro
66 lines (55 loc) · 1.42 KB
/
Lua4RS.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
!include("../Common/retroshare_plugin.pri")::error( "Could not include file ../Common/retroshare_plugin.pri" )
CONFIG += qt resources uic qrc
HEADERS -= upnp/upnputil.h
SOURCES -= upnp/upnputil.c
linux-* {
LIBS += -llua
}
win32 {
LIBS += -llua52
INCLUDEPATH += ../../../lua-5.2.3/src
}
HEADERS += \
Lua4RSPlugin.h \
Lua4RSWidget.h \
Lua/LuaCore.h \
Lua/LuaToRS.h \
Lua/LuaCode.h \
Lua4RSNotify.h \
Lua4RSTickThread.h \
Lua/LuaList.h \
Lua/LuaConfig.h \
Lua/LuaContainer.h \
Lua/LuaEvent.h \
Lua/Trigger/LuaTriggerBase.h \
Lua/Trigger/LuaTriggerTimerInterval.h \
Lua/Trigger/LuaTriggerStartup.h \
Lua/Trigger/LuaTriggerEvent.h \
Lua/Trigger/LuaTriggerShutdown.h \
Lua/Trigger/LuaTriggerOnce.h
SOURCES += \
Lua4RSPlugin.cpp \
Lua4RSWidget.cpp \
Lua/LuaCore.cpp \
Lua/LuaToRS.cpp \
Lua/LuaToRSPeers.cpp \
Lua/LuaCode.cpp \
Lua4RSNotify.cpp \
Lua4RSTickThread.cpp \
Lua/LuaList.cpp \
Lua/LuaConfig.cpp \
Lua/LuaContainer.cpp \
Lua/Trigger/LuaTriggerBase.cpp \
Lua/Trigger/LuaTriggerTimerInterval.cpp \
Lua/Trigger/LuaTriggerStartup.cpp \
Lua/Trigger/LuaTriggerEvent.cpp \
Lua/Trigger/LuaTriggerShutdown.cpp \
Lua/Trigger/LuaTriggerOnce.cpp
FORMS += \
Lua4RSWidget.ui
TARGET = Lua4RS
RESOURCES += \
Lua4RS_images.qrc
TRANSLATIONS += \
lang/Lua4RS_en.ts
XUP.QT_VERSION = Qt System (4.8.1)