mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
31 lines
624 B
Prolog
31 lines
624 B
Prolog
QT -= core
|
|
QT -= gui
|
|
|
|
VERSION = 0.0.0.1
|
|
TARGET = HtmlFile2
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += shared
|
|
CONFIG += plugin
|
|
CONFIG += core_static_link_libstd
|
|
|
|
DEFINES += HTMLFILE2_USE_DYNAMIC_LIBRARY
|
|
DEFINES += CSSCALCULATOR_LIBRARY_STATIC
|
|
|
|
CORE_ROOT_DIR = $$PWD/..
|
|
PWD_ROOT_DIR = $$PWD
|
|
include($$CORE_ROOT_DIR/Common/base.pri)
|
|
|
|
# equal .c names
|
|
CONFIG += object_parallel_to_source
|
|
core_windows:CONFIG += no_batch
|
|
|
|
include($$CORE_ROOT_DIR/Common/3dParty/html/gumbo.pri)
|
|
include($$CORE_ROOT_DIR/Common/3dParty/html/css/CssCalculator.pri)
|
|
|
|
ADD_DEPENDENCY(kernel, UnicodeConverter, graphics)
|
|
|
|
SOURCES += htmlfile2.cpp
|
|
|
|
HEADERS += htmlfile2.h
|