Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
6f4a1dd9
"examples/vscode:/vscode.git/clone" did not exist on "ba74a8be7a620da0558f27802a19736627e9e64a"
Commit
6f4a1dd9
authored
Dec 10, 2017
by
Davis King
Browse files
Improved cmake's finding of the right python interpreter.
parent
d3a824d9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
dlib/cmake_utils/add_python_module
dlib/cmake_utils/add_python_module
+6
-1
No files found.
dlib/cmake_utils/add_python_module
View file @
6f4a1dd9
...
@@ -25,7 +25,12 @@ endif()
...
@@ -25,7 +25,12 @@ endif()
# Sometimes a computer will have multiple python verions installed. So in this
# Sometimes a computer will have multiple python verions installed. So in this
# block of code we find the one in the user's path and add its home folder into
# block of code we find the one in the user's path and add its home folder into
# cmake's search path. That way it will use that version of python first.
# cmake's search path. That way it will use that version of python first.
find_program(PYTHON_EXECUTABLE python)
if (PYTHON3)
find_program(PYTHON_EXECUTABLE python3)
endif()
if (NOT PYTHON_EXECUTABLE)
find_program(PYTHON_EXECUTABLE python)
endif()
# Resolve symbolic links, hopefully this will give us a path in the proper
# Resolve symbolic links, hopefully this will give us a path in the proper
# python home directory.
# python home directory.
get_filename_component(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE} REALPATH)
get_filename_component(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE} REALPATH)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment