We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c04955c commit f4d1b08Copy full SHA for f4d1b08
cmake/yup_python.cmake
@@ -46,8 +46,10 @@ function (yup_prepare_python_stdlib target_name python_tools_path output_variabl
46
47
if (YUP_PLATFORM_WINDOWS)
48
execute_process (
49
- COMMAND dir "${Python_LIBRARY_DIRS}" /s /b
50
- COMMAND dir "${Python_LIBRARY_DIRS}/.." /s /b
+ COMMAND dir "${Python_LIBRARY_DIRS}/.."
+ COMMAND dir "${Python_LIBRARY_DIRS}/../Lib"
51
+ COMMAND dir "${Python_LIBRARY_DIRS}/../Scripts"
52
+ COMMAND dir "${Python_LIBRARY_DIRS}/../DLLs"
53
COMMAND_ECHO STDOUT)
54
endif()
55
0 commit comments