summaryrefslogtreecommitdiffstats
path: root/Lua.pro
blob: 9781e0d10fe66e0f3a73b0c6d5d2bad3e5acd68b (plain)
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
TARGET = Lua
include($$PWD/../../commonplatform.pri)
CONFIG += console warn_off installed
win32 {
DEFINES += LUA_ANSI LUA_BUILD_AS_DLL LUA_DL_DLL
}
linux | qnx {
CONFIG += staticlib
DEFINES += LUA_ANSI LUA_USE_DLOPEN
}
mac {
CONFIG += staticlib
DEFINES += LUA_ANSI LUA_USE_DLOPEN
}
android {
DEFINES += LUA_NO_LOCALECONV
}
integrity {
CONFIG += staticlib
DEFINES += LUA_ANSI
}

include(Lua.pri)

load(qt_helper_lib)