tdesktop/Telegram/MetaLang.pro

31 lines
665 B
Prolog
Raw Normal View History

QT += core
2014-06-14 19:32:11 +00:00
CONFIG(debug, debug|release) {
DEFINES += _DEBUG
OBJECTS_DIR = ./../DebugIntermediateLang
2014-06-14 19:32:11 +00:00
MOC_DIR = ./GeneratedFiles/Debug
DESTDIR = ./../DebugLang
2014-06-14 19:32:11 +00:00
}
CONFIG(release, debug|release) {
OBJECTS_DIR = ./../ReleaseIntermediateLang
2014-06-14 19:32:11 +00:00
MOC_DIR = ./GeneratedFiles/Release
DESTDIR = ./../ReleaseLang
2014-06-14 19:32:11 +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 \
include(qt_static.pri)