2014-07-09 09:54:12 +04:00
|
|
|
QT += core
|
2014-06-14 23:32:11 +04:00
|
|
|
|
|
|
|
CONFIG(debug, debug|release) {
|
|
|
|
DEFINES += _DEBUG
|
2014-07-09 09:54:12 +04:00
|
|
|
OBJECTS_DIR = ./../DebugIntermediateLang
|
2014-06-14 23:32:11 +04:00
|
|
|
MOC_DIR = ./GeneratedFiles/Debug
|
2014-07-09 09:54:12 +04:00
|
|
|
DESTDIR = ./../DebugLang
|
2014-06-14 23:32:11 +04:00
|
|
|
}
|
|
|
|
CONFIG(release, debug|release) {
|
2014-07-09 09:54:12 +04:00
|
|
|
OBJECTS_DIR = ./../ReleaseIntermediateLang
|
2014-06-14 23:32:11 +04:00
|
|
|
MOC_DIR = ./GeneratedFiles/Release
|
2014-07-09 09:54:12 +04:00
|
|
|
DESTDIR = ./../ReleaseLang
|
2014-06-14 23:32:11 +04:00
|
|
|
}
|
|
|
|
|
2016-06-15 09:59:43 +03:00
|
|
|
CONFIG += plugin static c++14
|
2014-07-10 12:53:23 +04:00
|
|
|
|
2014-06-14 23:32:11 +04: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 14:14:44 +06:00
|
|
|
include(qt_static.pri)
|