CMakeLists.txt: use system <md4c, tidy>

Search for libraries in the system first, falling back to bundled
copies in case they aren't found.

Change-Id: I10e154f18c569d87dbdcbee3341316ceed57f13c
GitLab: #1506
This commit is contained in:
Maxim Cournoyer
2024-01-09 10:40:07 -05:00
committed by Adrien Béraud
parent c738caa3a4
commit 6fc2e75a33

View File

@@ -694,20 +694,34 @@ add_subdirectory(3rdparty/SortFilterProxyModel)
set(SFPM_OBJECTS $<TARGET_OBJECTS:SortFilterProxyModel>) set(SFPM_OBJECTS $<TARGET_OBJECTS:SortFilterProxyModel>)
# md4c # md4c
set(BUILD_MD2HTML_EXECUTABLE OFF CACHE BOOL "Don't build md2html executable" FORCE) find_package(md4c)
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Don't build shared md4c library" FORCE) if(md4c_FOUND)
add_subdirectory(3rdparty/md4c EXCLUDE_FROM_ALL) message(STATUS "Using system-provided md4c-html")
list(APPEND CLIENT_LINK_DIRS ${MD4C_BINARY_DIR}/src) list(APPEND CLIENT_LIBS md4c::md4c-html)
list(APPEND CLIENT_INCLUDE_DIRS ${MD4C_SOURCE_DIR}/src) else()
list(APPEND CLIENT_LIBS md4c-html) message("Using bundled md4c-html library")
set(BUILD_MD2HTML_EXECUTABLE OFF CACHE BOOL "Don't build md2html executable" FORCE)
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Don't build shared md4c library" FORCE)
add_subdirectory(3rdparty/md4c EXCLUDE_FROM_ALL)
list(APPEND CLIENT_LINK_DIRS ${MD4C_BINARY_DIR}/src)
list(APPEND CLIENT_INCLUDE_DIRS ${MD4C_SOURCE_DIR}/src)
list(APPEND CLIENT_LIBS md4c-html)
endif()
# tidy-html5 # tidy-html5
set(BUILD_SHARED_LIB OFF CACHE BOOL "Don't build shared tidy library" FORCE) pkg_check_modules(tidy IMPORTED_TARGET tidy)
set(SUPPORT_CONSOLE_APP OFF CACHE BOOL "Don't build tidy console app" FORCE) if(tidy_FOUND)
add_subdirectory(3rdparty/tidy-html5 EXCLUDE_FROM_ALL) message(STATUS "Using system-provided tidy")
list(APPEND CLIENT_LINK_DIRS ${tidy_BINARY_DIR}/Release) list(APPEND CLIENT_LIBS PkgConfig::tidy)
list(APPEND CLIENT_INCLUDE_DIRS ${tidy_SOURCE_DIR}/include) else()
list(APPEND CLIENT_LIBS tidy-static) message("Using bundled tidy library")
set(BUILD_SHARED_LIB OFF CACHE BOOL "Don't build shared tidy library" FORCE)
set(SUPPORT_CONSOLE_APP OFF CACHE BOOL "Don't build tidy console app" FORCE)
add_subdirectory(3rdparty/tidy-html5 EXCLUDE_FROM_ALL)
list(APPEND CLIENT_LINK_DIRS ${tidy_BINARY_DIR}/Release)
list(APPEND CLIENT_INCLUDE_DIRS ${tidy_SOURCE_DIR}/include)
list(APPEND CLIENT_LIBS tidy-static)
endif()
# ZXing-cpp configuration # ZXing-cpp configuration
set(BUILD_EXAMPLES OFF CACHE BOOL "") set(BUILD_EXAMPLES OFF CACHE BOOL "")