From 2483a246e999b166062c7710b1a0bdf59bf7d12b Mon Sep 17 00:00:00 2001 From: Kelvin Date: Sun, 9 Jun 2024 15:59:04 -0700 Subject: [PATCH] adding a path to python3 --- bindings/python/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/CMakeLists.txt b/bindings/python/CMakeLists.txt index d94cada..d2eea77 100644 --- a/bindings/python/CMakeLists.txt +++ b/bindings/python/CMakeLists.txt @@ -7,7 +7,7 @@ include(UseSWIG) list(APPEND CMAKE_SWIG_FLAGS "-py3;-DPY3;-keyword") # Setup for Python linking -find_package(Python3 REQUIRED COMPONENTS Interpreter Development PATHS $ENV{CONDA_PREFIX}) +find_package(Python3 REQUIRED COMPONENTS Interpreter Development HINTS $ENV{CONDA_PREFIX}) # Setup for wrapper library set(PYSPICEQL_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/pyspiceql")