mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
29 lines
469 B
Prolog
29 lines
469 B
Prolog
QT -= core gui
|
|
|
|
VERSION = 1.0.0.4
|
|
TARGET = UnicodeConverter
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += shared
|
|
CONFIG += plugin
|
|
|
|
CONFIG += core_static_link_libstd
|
|
|
|
CORE_ROOT_DIR = $$PWD/..
|
|
PWD_ROOT_DIR = $$PWD
|
|
include(../Common/base.pri)
|
|
|
|
DEFINES += UNICODECONVERTER_USE_DYNAMIC_LIBRARY
|
|
|
|
core_linux {
|
|
QMAKE_LFLAGS += -Wl,--rpath=./
|
|
}
|
|
|
|
include(../Common/3dParty/icu/icu.pri)
|
|
|
|
SOURCES += \
|
|
UnicodeConverter.cpp
|
|
|
|
HEADERS +=\
|
|
UnicodeConverter.h
|