forked from gideros/gideros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua.pro
61 lines (52 loc) · 931 Bytes
/
lua.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
#-------------------------------------------------
#
# Project created by QtCreator 2011-12-13T12:06:49
#
#-------------------------------------------------
QT -= core gui
TARGET = lua
TEMPLATE = lib
CONFIG += silent
win32 {
DEFINES += LUA_BUILD_AS_DLL
}
INCLUDEPATH += \
src \
../libgvfs
SOURCES += etc/all_lua.c
HEADERS += \
src/lzio.h \
src/lvm.h \
src/lundump.h \
src/lualib.h \
src/luaconf.h \
src/lua.hpp \
src/lua.h \
src/ltm.h \
src/ltable.h \
src/lstring.h \
src/lstate.h \
src/lparser.h \
src/lopcodes.h \
src/lobject.h \
src/lmem.h \
src/llimits.h \
src/llex.h \
src/lgc.h \
src/lfunc.h \
src/ldo.h \
src/ldebug.h \
src/lcode.h \
src/lauxlib.h \
src/lapi.h
win32 {
LIBS += -L"../libgvfs/release" -lgvfs
}
macx {
LIBS += -L"../libgvfs" -lgvfs
}
else {
unix:!macx {
LIBS += ../libgvfs/libgvfs.so
}
}