diff options
author | Brad King <brad.king@kitware.com> | 2020-11-16 16:16:04 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-11-16 16:16:12 (GMT) |
commit | 1efdba91ae02b8c4918bc52abd320c42bb5bfaeb (patch) | |
tree | 824ea6761055ce656c6bbf59452d7f6e05e111b5 /Tests | |
parent | 3ae680841cac60381b06cc7b911ad3b6ccfd1669 (diff) | |
parent | 3d1183c457bc023a999a2140a93701c503e1ddc4 (diff) | |
download | CMake-1efdba91ae02b8c4918bc52abd320c42bb5bfaeb.zip CMake-1efdba91ae02b8c4918bc52abd320c42bb5bfaeb.tar.gz CMake-1efdba91ae02b8c4918bc52abd320c42bb5bfaeb.tar.bz2 |
Merge topic 'ci-fedora33'
3d1183c457 Merge branch 'ci-fedora33-release' into ci-fedora33
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')
-rw-r--r-- | Tests/FindBoost/TestPython/CMakeLists.txt | 4 |
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() |