2014-07-09 05:54:12 +00:00
|
|
|
QT += core
|
2014-06-14 19:32:11 +00:00
|
|
|
|
|
|
|
CONFIG(debug, debug|release) {
|
|
|
|
DEFINES += _DEBUG
|
2014-07-09 05:54:12 +00:00
|
|
|
OBJECTS_DIR = ./../DebugIntermediateLang
|
2014-06-14 19:32:11 +00:00
|
|
|
MOC_DIR = ./GeneratedFiles/Debug
|
2014-07-09 05:54:12 +00:00
|
|
|
DESTDIR = ./../DebugLang
|
2014-06-14 19:32:11 +00:00
|
|
|
}
|
|
|
|
CONFIG(release, debug|release) {
|
2014-07-09 05:54:12 +00:00
|
|
|
OBJECTS_DIR = ./../ReleaseIntermediateLang
|
2014-06-14 19:32:11 +00:00
|
|
|
MOC_DIR = ./GeneratedFiles/Release
|
2014-07-09 05:54:12 +00:00
|
|
|
DESTDIR = ./../ReleaseLang
|
2014-06-14 19:32:11 +00:00
|
|
|
}
|
|
|
|
|
2016-06-15 06:59:43 +00:00
|
|
|
CONFIG += plugin static c++14
|
2014-07-10 08:53:23 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
macx {
|
|
|
|
QMAKE_INFO_PLIST = ./SourceFiles/_other/Lang.plist
|
|
|
|
QMAKE_LFLAGS += -framework Cocoa
|
|
|
|
}
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
./SourceFiles/_other/mlmain.cpp \
|
|
|
|
./SourceFiles/_other/genlang.cpp \
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
./SourceFiles/_other/mlmain.h \
|
|
|
|
./SourceFiles/_other/genlang.h \
|
|
|
|
|
2016-05-08 08:14:44 +00:00
|
|
|
include(qt_static.pri)
|