Skip to content

Commit

Permalink
python bindings: get version from package.xml
Browse files Browse the repository at this point in the history
Requires gz-cmake4 4.1.0.

Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters committed Nov 14, 2024
1 parent 250e95f commit f026bb4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Detect if we are doing a standalone build of the bindings, using an external gz-transport
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
cmake_minimum_required(VERSION 3.22.1)
set(GZ_TRANSPORT_VER 14)
project(gz-transport${GZ_TRANSPORT_VER}-python VERSION ${GZ_TRANSPORT_VER})
find_package(gz-cmake4 4.1.0 REQUIRED)
gz_get_package_xml_version(${CMAKE_SOURCE_DIR}/../package.xml PACKAGE_XML)
project(gz-transport${PACKAGE_XML_VERSION_MAJOR}-python VERSION ${PACKAGE_XML_VERSION})
find_package(gz-transport${PROJECT_VERSION_MAJOR} REQUIRED)
set(PROJECT_LIBRARY_TARGET_NAME "gz-transport${PROJECT_VERSION_MAJOR}::gz-transport${PROJECT_VERSION_MAJOR}")
# require python dependencies to be found
Expand Down

0 comments on commit f026bb4

Please sign in to comment.