|
12 | 12 | # See the License for the specific language governing permissions and
|
13 | 13 | # limitations under the License.
|
14 | 14 |
|
15 |
| -find_package(python_cmake_module REQUIRED) |
16 |
| -find_package(PythonExtra REQUIRED) |
17 | 15 | find_package(rmw REQUIRED)
|
18 | 16 | find_package(rosidl_runtime_c REQUIRED)
|
19 | 17 | find_package(rosidl_typesupport_c REQUIRED)
|
20 | 18 | find_package(rosidl_typesupport_interface REQUIRED)
|
21 | 19 |
|
| 20 | +# By default, without the settings below, find_package(Python3) will attempt |
| 21 | +# to find the newest python version it can, and additionally will find the |
| 22 | +# most specific version. For instance, on a system that has |
| 23 | +# /usr/bin/python3.10, /usr/bin/python3.11, and /usr/bin/python3, it will find |
| 24 | +# /usr/bin/python3.11, even if /usr/bin/python3 points to /usr/bin/python3.10. |
| 25 | +# The behavior we want is to prefer the "system" installed version unless the |
| 26 | +# user specifically tells us othewise through the Python3_EXECUTABLE hint. |
| 27 | +# Setting CMP0094 to NEW means that the search will stop after the first |
| 28 | +# python version is found. Setting Python3_FIND_UNVERSIONED_NAMES means that |
| 29 | +# the search will prefer /usr/bin/python3 over /usr/bin/python3.11. And that |
| 30 | +# latter functionality is only available in CMake 3.20 or later, so we need |
| 31 | +# at least that version. |
| 32 | +cmake_minimum_required(VERSION 3.20) |
| 33 | +cmake_policy(SET CMP0094 NEW) |
| 34 | +set(Python3_FIND_UNVERSIONED_NAMES FIRST) |
| 35 | + |
22 | 36 | find_package(Python3 REQUIRED COMPONENTS Interpreter Development NumPy)
|
23 | 37 |
|
24 | 38 | # Get a list of typesupport implementations from valid rmw implementations.
|
@@ -184,7 +198,9 @@ foreach(_typesupport_impl ${_typesupport_impls})
|
184 | 198 | ${rosidl_generate_interfaces_TARGET}__rosidl_typesupport_c
|
185 | 199 | )
|
186 | 200 |
|
187 |
| - set_target_properties(${_target_name} PROPERTIES DEBUG_POSTFIX "${PythonExtra_POSTFIX}") |
| 201 | + if(WIN32 AND CMAKE_BUILD_TYPE STREQUAL "Debug") |
| 202 | + set_target_properties(${_target_name} PROPERTIES DEBUG_POSTFIX "_d") |
| 203 | + endif() |
188 | 204 | # target_compile_options(${_target_name} PRIVATE ${_extension_compile_flags})
|
189 | 205 | # TODO(sloretz) use target_compile_options when python extension passes -Wpedantic
|
190 | 206 | set_target_properties(${_target_name} PROPERTIES COMPILE_OPTIONS "${_extension_compile_flags}")
|
|
0 commit comments