Files
CMake/Tests/FindPython/DifferentComponents/CMakeLists.txt
Marc Chevrier ece3bedbf2 FindPython: fix error on multiple queries with different COMPONENTS
Ensure that multiple queries with different COMPONENTS specified in
different sub-directories are fully supported.
2022-06-27 13:16:29 -04:00

8 lines
170 B
CMake

cmake_minimum_required(VERSION 3.1)
project(TestDifferentComponents LANGUAGES C)
add_subdirectory(subdir)
find_package(Python3 REQUIRED COMPONENTS Development.Module)