mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
25 lines
519 B
INI
25 lines
519 B
INI
QT -= core
|
|
QT -= 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)
|
|
include($$CORE_ROOT_DIR/Common/3dParty/icu/icu.pri)
|
|
|
|
ADD_DEPENDENCY(kernel, graphics, UnicodeConverter)
|
|
|
|
GRAPHICS_AGG_PATH = $$PWD/../../../agg-2.4
|
|
|
|
INCLUDEPATH += \
|
|
$$GRAPHICS_AGG_PATH/include
|
|
|
|
SOURCES += main.cpp
|
|
|
|
DESTDIR = $$PWD_ROOT_DIR/build/$$CORE_BUILDS_PLATFORM_PREFIX/$$CORE_BUILDS_CONFIGURATION_PREFIX
|