File cmake.patch of Package sourcetrail
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2fdb9262..4754c282 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -174,12 +174,12 @@ if (isVcpkgBuild)
endif()
set(BOOST_MIN_VERSION 1.83)
-set(BOOST_MAX_VERSION 1.89)
+set(BOOST_MAX_VERSION 1.90)
find_package(Boost CONFIG REQUIRED
COMPONENTS
# compiled libraries:
- system program_options filesystem date_time locale
+ program_options filesystem date_time locale
# 'header-only' libraries which can't be found with find_package:
# interprocess uuid asio process predef dll
@@ -217,7 +217,7 @@ target_link_libraries(External_lib_boost
Boost::headers
Boost::locale
Boost::program_options
- Boost::system
+ #Boost::system
# Prevent linker error in vcpkg build:
External_lib_icu
@@ -331,7 +331,6 @@ set_target_properties(Sourcetrail_lib_gui
# Lib Cxx ----------------------------------------------------------------------
if (BUILD_CXX_LANGUAGE_PACKAGE)
-
# Integrate LLVM/LibTooling.
# For further details see https://llvm.org/docs/CMake.html#embedding-llvm-in-your-project
@@ -397,7 +396,7 @@ if (BUILD_CXX_LANGUAGE_PACKAGE)
if (isVcpkgBuild)
set(headerSourceDir "${LLVM_TOOLS_BINARY_DIR}/lib/clang/${LLVM_VERSION_MAJOR}/include/")
else()
- set(headerSourceDir "${LLVM_TOOLS_BINARY_DIR}/../lib/clang/${LLVM_VERSION_MAJOR}/include/")
+ set(headerSourceDir "${LLVM_TOOLS_BINARY_DIR}/../lib64/clang/${LLVM_VERSION_MAJOR}/include/")
endif()
set(headerTargetDir "${CMAKE_BINARY_DIR}/app/data/cxx/include/")