Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
868d94fc
Commit
868d94fc
authored
Jun 11, 2019
by
Lori A. Burns
Committed by
Wenzel Jakob
Jun 11, 2019
Browse files
Apply c++ standard flag only to files of CXX language. (#1678)
parent
77ef03d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
tools/pybind11Config.cmake.in
tools/pybind11Config.cmake.in
+5
-1
tools/pybind11Tools.cmake
tools/pybind11Tools.cmake
+5
-1
No files found.
tools/pybind11Config.cmake.in
View file @
868d94fc
...
...
@@ -90,7 +90,11 @@ if(NOT TARGET ${PN}::pybind11)
set_property(TARGET ${PN}::module APPEND PROPERTY INTERFACE_LINK_LIBRARIES ${PYTHON_LIBRARIES})
endif()
set_property(TARGET ${PN}::pybind11 APPEND PROPERTY INTERFACE_COMPILE_OPTIONS "${PYBIND11_CPP_STANDARD}")
if(CMAKE_VERSION VERSION_LESS 3.3)
set_property(TARGET ${PN}::pybind11 APPEND PROPERTY INTERFACE_COMPILE_OPTIONS "${PYBIND11_CPP_STANDARD}")
else()
set_property(TARGET ${PN}::pybind11 APPEND PROPERTY INTERFACE_COMPILE_OPTIONS $<$<COMPILE_LANGUAGE:CXX>:${PYBIND11_CPP_STANDARD}>)
endif()
get_property(_iid TARGET ${PN}::pybind11 PROPERTY INTERFACE_INCLUDE_DIRECTORIES)
get_property(_ill TARGET ${PN}::module PROPERTY INTERFACE_LINK_LIBRARIES)
...
...
tools/pybind11Tools.cmake
View file @
868d94fc
...
...
@@ -185,7 +185,11 @@ function(pybind11_add_module target_name)
endif
()
# Make sure C++11/14 are enabled
target_compile_options
(
${
target_name
}
PUBLIC
${
PYBIND11_CPP_STANDARD
}
)
if
(
CMAKE_VERSION VERSION_LESS 3.3
)
target_compile_options
(
${
target_name
}
PUBLIC
${
PYBIND11_CPP_STANDARD
}
)
else
()
target_compile_options
(
${
target_name
}
PUBLIC $<$<COMPILE_LANGUAGE:CXX>:
${
PYBIND11_CPP_STANDARD
}
>
)
endif
()
if
(
ARG_NO_EXTRAS
)
return
()
...
...
Write
Preview
Markdown
is supported
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