mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-10-09 05:57:15 +03:00
3rdparty
zint-2.6.1
backend
backend_qt
CMakeLists.txt
backend_qt.pro
backend_vc8.pro
qzint.cpp
qzint.h
qzint_global.h
readme
COPYING
3rdparty.pro
demo_r1
demo_r2
designer
docs
include
limereport
translations
.gitignore
.travis.yml
COPYING
LICENSE
README.md
common.pri
followTo.patch
limereport.pri
limereport.pro
qzint.pri
22 lines
626 B
CMake
22 lines
626 B
CMake
# (c) 2008 by BogDan Vatra < bogdan@licentia.eu >
|
|
|
|
project(QZint)
|
|
|
|
include_directories(BEFORE "${CMAKE_SOURCE_DIR}/backend" )
|
|
|
|
set(QZint_SRCS qzint.cpp)
|
|
|
|
add_library(QZint SHARED ${QZint_SRCS})
|
|
|
|
set_target_properties(QZint PROPERTIES SOVERSION "${ZINT_VERSION_MAJOR}.${ZINT_VERSION_MINOR}"
|
|
VERSION ${ZINT_VERSION})
|
|
|
|
add_dependencies(QZint zint)
|
|
|
|
link_directories( "${CMAKE_BINARY_DIR}/backend" )
|
|
|
|
target_link_libraries(QZint zint Qt5::Widgets Qt5::Gui )
|
|
|
|
install(TARGETS QZint ${INSTALL_TARGETS_DEFAULT_ARGS} )
|
|
install(FILES qzint.h DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel)
|