summaryrefslogtreecommitdiffstats
path: root/Tests/FindBoost/TestPython
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-11-16 16:16:04 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-11-16 16:16:12 (GMT)
commit87ef95686501e43e441956f54f874fb243fca44b (patch)
treef3a0cf802e36835055e1f9e988940df77a307f1e /Tests/FindBoost/TestPython
parentc35c4ae85c068eec0642e3f211daf2e3615fbfcf (diff)
parent6e35919e15b350c771afe8e9dc2a510dc4300e02 (diff)
downloadCMake-87ef95686501e43e441956f54f874fb243fca44b.zip
CMake-87ef95686501e43e441956f54f874fb243fca44b.tar.gz
CMake-87ef95686501e43e441956f54f874fb243fca44b.tar.bz2
Merge topic 'ci-fedora33' into release-3.19
6e35919e15 gitlab-ci: use Fedora 33 to build sources 061f7d5ca3 gitlab-ci: update Linux CI to use Fedora 33 bd62d2ecf3 ci: update to Fedora 33 for Linux builds ada3170625 ci: install gmock in the Fedora 31 image 86f196f634 Tests/FindBoost/TestPython: support finding 3.8 and 3.9 6a83417908 clang-tidy: ignore new warnings from newer versions d2b648ec4c clang-tidy: ignore `misc-no-recursion` Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5504
Diffstat (limited to 'Tests/FindBoost/TestPython')
-rw-r--r--Tests/FindBoost/TestPython/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/FindBoost/TestPython/CMakeLists.txt b/Tests/FindBoost/TestPython/CMakeLists.txt
index 4d137ca..6d292cd 100644
--- a/Tests/FindBoost/TestPython/CMakeLists.txt
+++ b/Tests/FindBoost/TestPython/CMakeLists.txt
@@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 3.14)
project(TestFindBoostPython CXX)
include(CTest)
-find_package(Boost OPTIONAL_COMPONENTS python27 python34 python35 python36 python37)
+find_package(Boost OPTIONAL_COMPONENTS python27 python34 python35 python36 python37 python38 python39)
set(FAILTEST TRUE)
-foreach (v IN ITEMS 27 34 35 36 37)
+foreach (v IN ITEMS 27 34 35 36 37 38 39)
if (Boost_PYTHON${v}_FOUND)
set(FAILTEST FALSE)
break()