Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
pinocchio
Commits
291b12a7
Verified
Commit
291b12a7
authored
Oct 30, 2021
by
Justin Carpentier
Browse files
cmake: fix python module
parent
6f59e2b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
unittest/python/pybind11/CMakeLists.txt
View file @
291b12a7
...
...
@@ -12,7 +12,13 @@ if(CMAKE_VERSION VERSION_GREATER 3.11)
add_library
(
cpp2pybind11 MODULE cpp2pybind11.cpp
)
target_link_libraries
(
cpp2pybind11 PRIVATE pinocchio_pywrap pybind11::module
)
IF
(
BUILD_WITH_OPENMP_SUPPORT AND NOT LINK_PYTHON_INTERFACE_TO_OPENMP
)
SET_TARGET_PROPERTIES
(
cpp2pybind11
PROPERTIES
PREFIX
""
SUFFIX
${
PYTHON_EXT_SUFFIX
}
)
IF
(
BUILD_WITH_OPENMP_SUPPORT AND NOT LINK_PYTHON_INTERFACE_TO_OPENMP
)
TARGET_LINK_LIBRARIES
(
cpp2pybind11 PRIVATE OpenMP::OpenMP_CXX
)
ENDIF
()
...
...
Write
Preview
Supports
Markdown
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