Skip to content

Commit 6d5fb0c

Browse files
committed
remove Development for winx86
1 parent b024be9 commit 6d5fb0c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ set(PLATFORM "win" CACHE STRING "Platform")
44
set(ARCH "x64" CACHE STRING "Arch")
55
set(WIN64 "")
66
set(LIB64 "")
7-
set(PYTHON_VERSION "")
87

98
message(STATUS "PLATFORM: ${PLATFORM}")
109
message(STATUS "ARCH: ${ARCH}")
@@ -34,7 +33,6 @@ elseif(PLATFORM STREQUAL "macos")
3433
set(CMAKE_OSX_ARCHITECTURES arm64)
3534
elseif(ARCH STREQUAL "x64")
3635
set(CMAKE_OSX_ARCHITECTURES x86_64)
37-
set(PYTHON_VERSION "")
3836
endif()
3937
# set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
4038
# set(CMAKE_INSTALL_RPATH "@executable_path")
@@ -56,7 +54,7 @@ set(CMAKE_CXX_FLAGS_RELEASE "-O3 ")
5654

5755
# Python3 needed
5856
# find_package(PythonInterp)
59-
find_package(Python3 REQUIRED COMPONENTS Interpreter Development)
57+
find_package(Python3 REQUIRED COMPONENTS Interpreter) # Development)
6058

6159
include_directories(
6260
${Python3_INCLUDE_DIRS}

0 commit comments

Comments
 (0)