change structure

This commit is contained in:
Syping 2019-10-12 05:19:27 +02:00
parent da69c259be
commit df496eae97
73 changed files with 170 additions and 169 deletions

View file

@ -16,7 +16,7 @@
#*****************************************************************************/
QT += core
TARGET = luaengineos
TARGET = LuaEngineOS
TEMPLATE = lib
CONFIG += c++11 \
skip_target_version_ext
@ -25,13 +25,13 @@ VERSION = 0.1
DEFINES += LUAENGINEOS_LIBRARY
static: DEFINES += LUAENGINE_STATIC
CONFIG(debug, debug|release): win32: LIBS += -L$$OUT_PWD/../luaengine/debug -lluaengine
CONFIG(release, debug|release): win32: LIBS += -L$$OUT_PWD/../luaengine/release -lluaengine
unix: LIBS += -L$$OUT_PWD/../luaengine -lluaengine
CONFIG(debug, debug|release): win32: LIBS += -L$$OUT_PWD/../luaenginecore/debug -lLuaEngine
CONFIG(release, debug|release): win32: LIBS += -L$$OUT_PWD/../luaenginecore/release -lLuaEngine
unix: LIBS += -L$$OUT_PWD/../luaenginecore -lLuaEngine
INCLUDEPATH += \
../luaengine/lua \
../luaengine/luaengine
../luaenginecore/lua \
../luaenginecore/luaengine
SOURCES += \
luaengine/LuaEngineOS.cpp
@ -45,5 +45,5 @@ win32 {
QMAKE_TARGET_COMPANY = "Syping"
QMAKE_TARGET_DESCRIPTION = "LuaEngine OS Library"
QMAKE_TARGET_COPYRIGHT = "Copyright (c) 2019 Syping"
QMAKE_TARGET_PRODUCT = "luaengineos"
QMAKE_TARGET_PRODUCT = "LuaEngineOS"
}