From 0a61ad33ca0296d418c5bb35d0c974fcac1ce6d4 Mon Sep 17 00:00:00 2001 From: acpaquette <acpaquette@usgs.gov> Date: Thu, 31 Aug 2023 11:28:46 -0700 Subject: [PATCH] Changed python find to only look for Development --- python/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 1c9e0a9..c2f3ad3 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -5,7 +5,7 @@ set_source_files_properties(../csmapi.i PROPERTIES CPLUSPLUS ON) #Find dependencies -find_package(Python3 REQUIRED COMPONENTS Interpreter Development) +find_package(Python3 REQUIRED COMPONENTS Development) find_path(CSM_INCLUDE_DIR NAMES csm.h PATH_SUFFIXES csm) find_library(CSM_LIBRARY NAMES csmapi) -- GitLab