Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
1bee7529
Commit
1bee7529
authored
3 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Plain Diff
Merge branch 'i200' into 'main'
CMake: Check presence of Py packages Closes
#200
See merge request
!680
parents
d25babf1
90db14c5
No related branches found
No related tags found
2 merge requests
!691
Draft: multi-python deployment instead of multi-python configuration
,
!680
CMake: Check presence of Py packages
Pipeline
#57244
passed
3 years ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmake/BornAgain/multipython/PyDependences.cmake
+13
-0
13 additions, 0 deletions
cmake/BornAgain/multipython/PyDependences.cmake
cmake/tests/find_pkg.py
+20
-0
20 additions, 0 deletions
cmake/tests/find_pkg.py
with
33 additions
and
0 deletions
cmake/BornAgain/multipython/PyDependences.cmake
+
13
−
0
View file @
1bee7529
...
@@ -63,8 +63,21 @@ function(find_multipython_dependences main_python_version)
...
@@ -63,8 +63,21 @@ function(find_multipython_dependences main_python_version)
endforeach
()
endforeach
()
if
(
BORNAGAIN_PYTHON_PACKAGE_VERSIONS
)
if
(
BORNAGAIN_PYTHON_PACKAGE_VERSIONS
)
# check presence of some Python modules
foreach
(
pkg build setuptools wheel
)
message
(
STATUS
"Searching Python package
${
pkg
}
"
)
execute_process
(
COMMAND
${
Python3_EXECUTABLE
}
${
CMAKE_SOURCE_DIR
}
/cmake/tests/find_pkg.py
${
pkg
}
RESULT_VARIABLE PKG_FOUND
)
if
(
NOT PKG_FOUND EQUAL 0
)
message
(
FATAL_ERROR
"Python package
${
pkg
}
not found"
)
endif
()
endforeach
()
# add the required build directories for the Python packages
# add the required build directories for the Python packages
set_python_package_dirs
(
"
${
BORNAGAIN_PYTHON_PACKAGE_VERSIONS
}
"
)
set_python_package_dirs
(
"
${
BORNAGAIN_PYTHON_PACKAGE_VERSIONS
}
"
)
endif
(
BORNAGAIN_PYTHON_PACKAGE_VERSIONS
)
endif
(
BORNAGAIN_PYTHON_PACKAGE_VERSIONS
)
# A member is included to build the _main_ version
# A member is included to build the _main_ version
...
...
This diff is collapsed.
Click to expand it.
cmake/tests/find_pkg.py
0 → 100755
+
20
−
0
View file @
1bee7529
#!/usr/bin/env python3
# A BornAgain auxiliary script.
# License: Public Domain.
# Checks whether a given Python3 module is installed.
#
# Takes module name as argument.
# Returns 0 if module can be imported. Otherwise returns 1.
import
sys
pkg
=
sys
.
argv
[
1
]
try
:
__import__
(
pkg
)
except
:
print
(
"
find_pkg.py: package
"
,
pkg
,
"
not found
"
)
sys
.
exit
(
1
)
print
(
"
find_pkg.py: package
"
,
pkg
,
"
found
"
)
sys
.
exit
(
0
)
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