cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
158 lines
4.3 KiB
CMake
158 lines
4.3 KiB
CMake
add_library(KF6Codecs)
|
|
add_library(KF6::Codecs ALIAS KF6Codecs)
|
|
|
|
set_target_properties(KF6Codecs PROPERTIES
|
|
VERSION ${KCODECS_VERSION}
|
|
SOVERSION ${KCODECS_SOVERSION}
|
|
EXPORT_NAME Codecs
|
|
# gperf < 3.1 always adds a "register" keyword to function arguments,
|
|
# which itself is removed from C++17,
|
|
# so sources including the generated header need to use C++14 only.
|
|
# Only kcharsets.cpp is affected, but right now nothing else needs C++17,
|
|
# so simply set standard for the while library
|
|
# Current version of FindGperf in ECM does not support a version check yet,
|
|
# so for now always lower to C++14.
|
|
CXX_STANDARD 14
|
|
)
|
|
|
|
ecm_create_qm_loader(KF6Codecs kcodecs6_qt)
|
|
|
|
configure_file(kentities.h ${CMAKE_CURRENT_BINARY_DIR}/kentities.h COPYONLY)
|
|
|
|
target_sources(KF6Codecs PRIVATE
|
|
kcharsets.cpp
|
|
kcharsets.h
|
|
kcodecsbase45.cpp
|
|
kcodecsbase64.cpp
|
|
kcodecsbase64.h
|
|
kcodecs.cpp
|
|
kcodecs.h
|
|
kcodecs_p.h
|
|
kcodecsqp.cpp
|
|
kcodecsqp.h
|
|
kcodecsuuencode.cpp
|
|
kcodecsuuencode.h
|
|
kemailaddress.cpp
|
|
kemailaddress.h
|
|
kencodingprober.cpp
|
|
kencodingprober.h
|
|
probers/CharDistribution.cpp
|
|
probers/CharDistribution.h
|
|
probers/ChineseGroupProber.cpp
|
|
probers/ChineseGroupProber.h
|
|
probers/JapaneseGroupProber.cpp
|
|
probers/JapaneseGroupProber.h
|
|
probers/JpCntx.cpp
|
|
probers/JpCntx.h
|
|
probers/LangBulgarianModel.cpp
|
|
probers/LangCyrillicModel.cpp
|
|
probers/LangGreekModel.cpp
|
|
probers/LangHebrewModel.cpp
|
|
probers/LangHungarianModel.cpp
|
|
probers/LangThaiModel.cpp
|
|
probers/nsBig5Prober.cpp
|
|
probers/nsBig5Prober.h
|
|
probers/nsCharSetProber.cpp
|
|
probers/nsCharSetProber.h
|
|
probers/nsCodingStateMachine.h
|
|
probers/nsEscCharsetProber.cpp
|
|
probers/nsEscCharsetProber.h
|
|
probers/nsEscSM.cpp
|
|
probers/nsEUCJPProber.cpp
|
|
probers/nsEUCJPProber.h
|
|
probers/nsEUCKRProber.cpp
|
|
probers/nsEUCKRProber.h
|
|
probers/nsGB2312Prober.cpp
|
|
probers/nsGB2312Prober.h
|
|
probers/nsHebrewProber.cpp
|
|
probers/nsHebrewProber.h
|
|
probers/nsLatin1Prober.cpp
|
|
probers/nsLatin1Prober.h
|
|
probers/nsMBCSGroupProber.cpp
|
|
probers/nsMBCSGroupProber.h
|
|
probers/nsMBCSSM.cpp
|
|
probers/nsPkgInt.h
|
|
probers/nsSBCharSetProber.cpp
|
|
probers/nsSBCharSetProber.h
|
|
probers/nsSBCSGroupProber.cpp
|
|
probers/nsSBCSGroupProber.h
|
|
probers/nsSJISProber.cpp
|
|
probers/nsSJISProber.h
|
|
probers/nsUniversalDetector.cpp
|
|
probers/nsUniversalDetector.h
|
|
probers/UnicodeGroupProber.cpp
|
|
probers/UnicodeGroupProber.h
|
|
)
|
|
|
|
ecm_qt_declare_logging_category(KF6Codecs
|
|
HEADER kcodecs_debug.h
|
|
IDENTIFIER KCODECS_LOG
|
|
CATEGORY_NAME kf.codecs
|
|
OLD_CATEGORY_NAMES kf5.kcodecs
|
|
DESCRIPTION "KCodecs"
|
|
EXPORT KCODECS
|
|
)
|
|
|
|
ecm_generate_export_header(KF6Codecs
|
|
BASE_NAME KCodecs
|
|
GROUP_BASE_NAME KF
|
|
VERSION ${KF_VERSION}
|
|
USE_VERSION_HEADER
|
|
DEPRECATED_BASE_VERSION 0
|
|
DEPRECATION_VERSIONS
|
|
EXCLUDE_DEPRECATED_BEFORE_AND_AT ${EXCLUDE_DEPRECATED_BEFORE_AND_AT}
|
|
)
|
|
|
|
target_include_directories(KF6Codecs INTERFACE "$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF}/KCodecs>")
|
|
|
|
target_link_libraries(KF6Codecs PUBLIC Qt6::Core)
|
|
|
|
ecm_generate_headers(KCodecs_HEADERS
|
|
HEADER_NAMES
|
|
KCharsets
|
|
KCodecs
|
|
KEncodingProber
|
|
KEmailAddress
|
|
REQUIRED_HEADERS KCodecs_HEADERS
|
|
)
|
|
|
|
install(TARGETS KF6Codecs EXPORT KF6CodecsTargets ${KF_INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|
|
install(FILES
|
|
${CMAKE_CURRENT_BINARY_DIR}/kcodecs_export.h
|
|
${KCodecs_HEADERS}
|
|
DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KCodecs COMPONENT Devel
|
|
)
|
|
|
|
ecm_qt_install_logging_categories(
|
|
EXPORT KCODECS
|
|
FILE kcodecs.categories
|
|
DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}
|
|
)
|
|
|
|
if(BUILD_QCH)
|
|
ecm_add_qch(
|
|
KF6Codecs_QCH
|
|
NAME KCodecs
|
|
BASE_NAME KF6Codecs
|
|
VERSION ${KF_VERSION}
|
|
ORG_DOMAIN org.kde
|
|
SOURCES # using only public headers, to cover only public API
|
|
${KCodecs_HEADERS}
|
|
MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md"
|
|
LINK_QCHS
|
|
Qt6Core_QCH
|
|
INCLUDE_DIRS
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
BLANK_MACROS
|
|
KCODECS_EXPORT
|
|
KCODECS_DEPRECATED
|
|
KCODECS_DEPRECATED_EXPORT
|
|
"KCODECS_DEPRECATED_VERSION(x, y, t)"
|
|
TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR}
|
|
QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR}
|
|
COMPONENT Devel
|
|
)
|
|
endif()
|
|
|