21 lines
408 B
Prolog
21 lines
408 B
Prolog
CONFIG -= qt
|
|
QT -= core gui
|
|
|
|
TARGET = test
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
TEMPLATE = app
|
|
|
|
CORE_ROOT_DIR = $$PWD/../..
|
|
PWD_ROOT_DIR = $$PWD
|
|
include($$CORE_ROOT_DIR/Common/base.pri)
|
|
|
|
ADD_DEPENDENCY(UnicodeConverter, kernel, IWorkFile)
|
|
|
|
core_linux:include($$PWD/../../Common/3dParty/icu/icu.pri)
|
|
core_windows:LIBS += -lgdi32 -ladvapi32 -luser32 -lshell32
|
|
|
|
SOURCES += main.cpp
|
|
|
|
DESTDIR = $$PWD/build
|