qwt-cmake/textengines/CMakeLists.txt
2025-03-08 13:54:33 +01:00

46 lines
1.2 KiB
CMake

#----------------------------------------------------------------
# Packages
#----------------------------------------------------------------
find_package(Qt5Xml REQUIRED)
#----------------------------------------------------------------
# Sources
#----------------------------------------------------------------
set(qwt_mathml_headers
include/qwt_mathml_text_engine.h
include/qwt_mml_document.h
)
set(qwt_mathml_sources
mathml/qwt_mathml_text_engine.cpp
mathml/qwt_mml_document.cpp
)
#----------------------------------------------------------------
# Target
#----------------------------------------------------------------
add_library(qwt_mathml SHARED ${qwt_mathml_headers} ${qwt_mathml_sources})
check_ipo_supported(RESULT result OUTPUT output)
if(result)
set_target_properties(qwt_mathml PROPERTIES INTERPROCEDURAL_OPTIMIZATION_RELEASE ON)
else()
message(WARNING "IPO is not supported: ${output}")
endif()
target_include_directories(qwt_mathml
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/include
)
target_compile_definitions(qwt_mathml
PUBLIC
$<$<BOOL:MSVC>:QWT_DLL>
PRIVATE
$<$<BOOL:MSVC>:QWT_MAKEDLL>
)
target_link_libraries(qwt_mathml
PRIVATE
Qt5::Xml
qwt
)