We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92430d8 commit 9173332Copy full SHA for 9173332
cmake/Boost.cmake
@@ -12,8 +12,11 @@ set(Boost_USE_MULTITHREADED ON)
12
set(Boost_USE_STATIC_RUNTIME OFF)
13
find_package(Boost 1.70.0 REQUIRED COMPONENTS system)
14
15
-# attempt fixes from @al-cheb
+# fix attempt from @al-cheb
16
# https://github.com/actions/virtual-environments/issues/370#issuecomment-586209745
17
if(WIN32)
18
- add_definitions(-DBOOST_ALL_NO_LIB -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_THREAD_DYN_LINK)
+ add_definitions(
19
+ -DBOOST_ALL_NO_LIB -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_IOSTREAMS_DYN_LINK
20
+ -DBOOST_THREAD_DYN_LINK
21
+ )
22
endif()
0 commit comments