Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
6678dd68
Verified
Commit
6678dd68
authored
6 months ago
by
Santiago Ospina De Los Ríos
Browse files
Options
Downloads
Patches
Plain Diff
Remove CMake 2.29 IS_EXECUTABLE
parent
c74ec124
Branches
cleanup/use-python-interpreter-target
No related tags found
1 merge request
!1417
Use Python3::Interpreter instead of Python3_EXECUTABLE
Pipeline
#77640
passed
3 days ago
Stage: .pre
Stage: test
Stage: code_quality
Stage: downstream
Pipeline: Dune Nightly Test
#77689
Pipeline: Dune Nightly Test
#77677
Pipeline: Dune Nightly Test
#77645
+1
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/modules/DunePythonFindPackage.cmake
+1
-1
1 addition, 1 deletion
cmake/modules/DunePythonFindPackage.cmake
with
1 addition
and
1 deletion
cmake/modules/DunePythonFindPackage.cmake
+
1
−
1
View file @
6678dd68
...
...
@@ -72,7 +72,7 @@ function(dune_python_find_package)
get_target_property
(
PYPACKAGE_LOCATION
${
PYPACKAGE_INTERPRETER
}
LOCATION
)
endif
()
# sanity check on the interpreter
if
(
NOT
IS_EXECUTABLE
${
PYPACKAGE_LOCATION
}
)
if
(
NOT
EXISTS
${
PYPACKAGE_LOCATION
}
)
message
(
FATAL_ERROR
"The location of the python interpreter '
${
PYPACKAGE_LOCATION
}
' is not executable"
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment