aboutsummaryrefslogtreecommitdiff
path: root/ports/mlpack/fix-test-dependency.patch
diff options
context:
space:
mode:
authorJack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>2021-05-20 05:05:43 +0800
committerGitHub <noreply@github.com>2021-05-19 14:05:43 -0700
commitc99dc50be99c9656502d140e1d785a267ab233a4 (patch)
tree84bb9de6c33b93fc965dbde7915a53bf18ffea97 /ports/mlpack/fix-test-dependency.patch
parent3738723dd22fcba69c3f16497d4696aee0f48b51 (diff)
downloadvcpkg-c99dc50be99c9656502d140e1d785a267ab233a4.tar.gz
vcpkg-c99dc50be99c9656502d140e1d785a267ab233a4.zip
[vcpkg baseline][many ports] Fix build error (#17983)
* [vcpkg baseline][wxwidgets] Fix build error * [mlpack] Fix configure error (upstream bug) * [vcpkg baseline] [embree2/embree3] Set cmake policy * Remove control file * Update baseline version * [mlpack] Re-write the dependency * [mlpack] Remove dependency boost-test since only feature test need it, add more boost dependencies. * [mlpack] Add dependency boost-heap * [mlpack] Fix uwp build * update version record * [mlpack] Revert uwp fix * update version record * [mlpack] Remove dependency boost-test * update version record * update baseline * [clamav] Update hash * update version record Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
Diffstat (limited to 'ports/mlpack/fix-test-dependency.patch')
-rw-r--r--ports/mlpack/fix-test-dependency.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/ports/mlpack/fix-test-dependency.patch b/ports/mlpack/fix-test-dependency.patch
new file mode 100644
index 000000000..1dbb5088d
--- /dev/null
+++ b/ports/mlpack/fix-test-dependency.patch
@@ -0,0 +1,24 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index b59555c..4dd92f0 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -441,11 +441,18 @@ set(Boost_ADDITIONAL_VERSIONS
+ set(Boost_NO_BOOST_CMAKE 1)
+ find_package(Boost "${BOOST_VERSION}"
+ COMPONENTS
+- unit_test_framework
+ serialization
+ REQUIRED
+ )
+
++if (BUILD_TESTS)
++ find_package(Boost "${BOOST_VERSION}"
++ COMPONENTS
++ unit_test_framework
++ REQUIRED
++ )
++endif()
++
+ if(0)
+ link_directories(${Boost_LIBRARY_DIRS})
+