diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 744e6b6f8c..5aeaeca7e4 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -45,7 +45,7 @@ jobs: $release_name = "karbo-cli-win64-$krb_ver" mkdir "$build_folder" cd "$build_folder" - cmake -G "Visual Studio 16 2019" -A x64 -DBoost_DEBUG=ON -D_boost_RELEASE_ABI_TAG="-" -DCMAKE_BUILD_TYPE=Build -DBoost_INCLUDE_DIR=${{steps.install-boost.outputs.BOOST_ROOT}}/include -DBoost_LIBRARY_DIRS=${{steps.install-boost.outputs.BOOST_ROOT}}/lib -DBOOST_ROOT="$env:BOOST_ROOT" .. + cmake -G "Visual Studio 16 2019" -A x64 -DBoost_DEBUG=ON -DBoost_LIBRARY_SUFFIX="-vc142-mt-x64-1_84" -DBoost_INCLUDE_DIR=${{steps.install-boost.outputs.BOOST_ROOT}}/include -DBoost_LIBRARY_DIRS=${{steps.install-boost.outputs.BOOST_ROOT}}/lib -DBOOST_ROOT="$env:BOOST_ROOT" .. msbuild Karbowanec.sln /p:Configuration=Release /m cd src\Release Compress-Archive -Path *.exe -DestinationPath "$release_name.zip" diff --git a/CMakeLists.txt b/CMakeLists.txt index 4178e4fe16..8611cae4cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -497,7 +497,6 @@ endif() set(Boost_NO_BOOST_CMAKE ON) set(Boost_USE_STATIC_LIBS ON) set(Boost_USE_STATIC_RUNTIME ON) -set(_boost_RELEASE_ABI_TAG "-" CACHE STRING "Get rid of -s" FORCE) find_package(Boost REQUIRED COMPONENTS system filesystem thread date_time chrono regex serialization program_options coroutine context atomic) message(STATUS "Boost Found: ${Boost_INCLUDE_DIRS}")