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
c7486a31
Verified
Commit
c7486a31
authored
Oct 30, 2021
by
Justin Carpentier
Browse files
cmake: fix OpenMP linkage for tests
parent
d933ad1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
unittest/python/pybind11/CMakeLists.txt
View file @
c7486a31
...
...
@@ -11,8 +11,12 @@ if(CMAKE_VERSION VERSION_GREATER 3.11)
pybind11_add_module
(
cpp2pybind11 cpp2pybind11.cpp
)
target_link_libraries
(
cpp2pybind11 PRIVATE pinocchio_pywrap
)
IF
(
BUILD_WITH_OPENMP_SUPPORT AND NOT LINK_PYTHON_INTERFACE_TO_OPENMP
)
TARGET_LINK_LIBRARIES
(
cpp2pybind11 PRIVATE OpenMP::OpenMP_CXX
)
ENDIF
()
if
(
CMAKE_CXX_STANDARD LESS 14
)
message
(
STATUS
"CXX_STANDARD for cpp2pybind11
set
changed from
${
CMAKE_CXX_STANDARD
}
to 14"
)
message
(
STATUS
"CXX_STANDARD for cpp2pybind11 changed from
${
CMAKE_CXX_STANDARD
}
to 14"
)
set_target_properties
(
cpp2pybind11 PROPERTIES CXX_STANDARD 14
)
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