20 lines
386 B
Prolog
20 lines
386 B
Prolog
TEMPLATE = app
|
|
CONFIG += console c++11
|
|
CONFIG -= app_bundle
|
|
CONFIG -= qt
|
|
|
|
TARGET = tests
|
|
|
|
SOURCES += main.cpp
|
|
|
|
CORE_ROOT_DIR = $$PWD/../../
|
|
PWD_ROOT_DIR = $$PWD
|
|
|
|
include($$CORE_ROOT_DIR/Common/base.pri)
|
|
include($$CORE_ROOT_DIR/Common/3dParty/icu/icu.pri)
|
|
include($$CORE_ROOT_DIR/Common/3dParty/googletest/googletest.pri)
|
|
|
|
ADD_DEPENDENCY(kernel, UnicodeConverter)
|
|
|
|
DESTDIR = $$PWD/build
|