vcpkg/ports/kenlm/fix-boost.patch

26 lines
647 B
Diff
Raw Normal View History

2020-10-21 02:31:46 +08:00
diff --git a/CMakeLists.txt b/CMakeLists.txt
2024-01-04 09:33:26 +08:00
index 3c6c863..fd08a48 100644
2020-10-21 02:31:46 +08:00
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)
-if (WIN32)
2024-01-04 09:33:26 +08:00
+if (0)
2020-10-21 02:31:46 +08:00
set(Boost_USE_STATIC_LIBS OFF)
# The auto-linking feature has problems with USE_STATIC_LIBS off, so we use
# BOOST_ALL_NO_LIB to turn it off.
2024-01-04 09:33:26 +08:00
@@ -100,6 +100,12 @@ find_package(Boost 1.41.0 REQUIRED COMPONENTS
thread
unit_test_framework
)
+set(Boost_LIBRARIES
+ Boost::program_options
+ Boost::system
+ Boost::thread
+ Boost::unit_test_framework
+)
# Define where include files live
include_directories(${Boost_INCLUDE_DIRS})