Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
085d70df
There was an error fetching the commit references. Please try again later.
Commit
085d70df
authored
3 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
Skip downloading and installing pybind11 when it is available on the system
parent
8559da81
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Python/CMakeLists.txt
+20
-16
20 additions, 16 deletions
src/Python/CMakeLists.txt
src/Python/pybind11.cmake.in
+3
-1
3 additions, 1 deletion
src/Python/pybind11.cmake.in
with
23 additions
and
17 deletions
src/Python/CMakeLists.txt
+
20
−
16
View file @
085d70df
...
...
@@ -11,23 +11,27 @@ if( PYTHONINTERP_FOUND )
endif
()
if
(
PYTHONLIBS_FOUND
)
# download and build pybind11 at configure time
configure_file
(
pybind11.cmake.in
${
CMAKE_BINARY_DIR
}
/pybind11-download/CMakeLists.txt
)
execute_process
(
COMMAND
${
CMAKE_COMMAND
}
-G
"
${
CMAKE_GENERATOR
}
"
.
RESULT_VARIABLE result
WORKING_DIRECTORY
${
CMAKE_BINARY_DIR
}
/pybind11-download
)
if
(
result
)
message
(
FATAL_ERROR
"CMake step for pybind11 failed:
${
result
}
"
)
endif
()
execute_process
(
COMMAND
${
CMAKE_COMMAND
}
--build .
RESULT_VARIABLE result
WORKING_DIRECTORY
${
CMAKE_BINARY_DIR
}
/pybind11-download
)
if
(
result
)
message
(
FATAL_ERROR
"Build step for pybind11 failed:
${
result
}
"
)
endif
()
# check if pybind11 exists on the system
find_package
(
pybind11 QUIET
)
if
(
NOT pybind11_FOUND
)
# download and build pybind11 at configure time
configure_file
(
pybind11.cmake.in
${
CMAKE_BINARY_DIR
}
/pybind11-download/CMakeLists.txt
)
execute_process
(
COMMAND
${
CMAKE_COMMAND
}
-G
"
${
CMAKE_GENERATOR
}
"
.
RESULT_VARIABLE result
WORKING_DIRECTORY
${
CMAKE_BINARY_DIR
}
/pybind11-download
)
if
(
result
)
message
(
FATAL_ERROR
"CMake step for pybind11 failed:
${
result
}
"
)
endif
()
execute_process
(
COMMAND
${
CMAKE_COMMAND
}
--build .
RESULT_VARIABLE result
WORKING_DIRECTORY
${
CMAKE_BINARY_DIR
}
/pybind11-download
)
if
(
result
)
message
(
FATAL_ERROR
"Build step for pybind11 failed:
${
result
}
"
)
endif
()
# add the pybind11 subdirectory to provide the pybind11_add_module macro
add_subdirectory
(
${
CMAKE_BINARY_DIR
}
/pybind11-src
${
CMAKE_BINARY_DIR
}
/pybind11-build
)
# add the pybind11 subdirectory to provide the pybind11_add_module macro
add_subdirectory
(
${
CMAKE_BINARY_DIR
}
/pybind11-src
${
CMAKE_BINARY_DIR
}
/pybind11-build
)
endif
()
# add the subdirectory with our bindings
add_subdirectory
(
pytnl
)
...
...
This diff is collapsed.
Click to expand it.
src/Python/pybind11.cmake.in
+
3
−
1
View file @
085d70df
...
...
@@ -8,7 +8,9 @@ ExternalProject_Add(pybind11
GIT_TAG master
SOURCE_DIR "${CMAKE_BINARY_DIR}/pybind11-src"
BINARY_DIR "${CMAKE_BINARY_DIR}/pybind11-build"
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX} -DPYBIND11_TEST=FALSE
CMAKE_ARGS -DPYBIND11_TEST=FALSE
# Do not install pybind11 in the system or user's home directory
INSTALL_COMMAND ""
# Disable update of the external project in an offline build
# reference: https://stackoverflow.com/a/40423683
UPDATE_DISCONNECTED ${OFFLINE_BUILD}
...
...
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