mirror of
https://github.com/docling-project/docling-parse.git
synced 2026-05-17 13:10:49 +00:00
6427726686
* fix: cmake-cxxopts by using similar approach as glm Signed-off-by: Peter Staar <taa@zurich.ibm.com> * fixed the loguru cmake Signed-off-by: Peter Staar <taa@zurich.ibm.com> * trying to be compatible with qpdf v10 and v11 Signed-off-by: Peter Staar <taa@zurich.ibm.com> --------- Signed-off-by: Peter Staar <taa@zurich.ibm.com>
40 lines
1.3 KiB
CMake
40 lines
1.3 KiB
CMake
|
|
message(STATUS "entering in extlib_loguru.cmake")
|
|
|
|
set(ext_name_loguru "loguru")
|
|
|
|
if(USE_SYSTEM_DEPS)
|
|
message(STATUS "using system-deps in extlib_loguru.cmake")
|
|
|
|
# this will define the loguru target
|
|
# find_package(loguru REQUIRED)
|
|
|
|
# add_library(${ext_name_loguru} INTERFACE IMPORTED)
|
|
# add_dependencies(${ext_name_loguru} loguru)
|
|
|
|
find_package(loguru CONFIG REQUIRED)
|
|
add_library(${ext_name_loguru} ALIAS loguru::loguru)
|
|
|
|
else()
|
|
message(STATUS "ignoring system-deps extlib_loguru.cmake")
|
|
|
|
include(FetchContent)
|
|
FetchContent_Declare(LoguruGitRepo
|
|
GIT_REPOSITORY "https://github.com/emilk/loguru"
|
|
GIT_TAG "4adaa185883e3c04da25913579c451d3c32cfac1" # pin current master, because tag v2.1.0 branch does not have full make support, that was introduced later , this SHA also matches the system package .rpm https://koji.fedoraproject.org/koji/rpminfo?rpmID=40293153
|
|
)
|
|
|
|
set(LOGURU_WITH_STREAMS TRUE)
|
|
set(STACKTRACES TRUE)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
|
|
|
|
if(WIN32)
|
|
# https://digitalmars.com/rtl/constants.html
|
|
# value of _SH_DENYNO is 0x40 = 64
|
|
add_compile_definitions(_SH_DENYNO=64)
|
|
endif()
|
|
|
|
FetchContent_MakeAvailable(LoguruGitRepo) # defines target 'loguru::loguru'
|
|
|
|
endif()
|