summaryrefslogtreecommitdiffstats
path: root/Lua.pro
blob: 2565a2e0d688fdeb59f31d213d933056355d847c (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 {
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)