Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename CMake package to gz #4

Merged
merged 1 commit into from
Jun 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ubuntu/debian/tests/build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# autopkgtest check: Build and run a program against ign-cmake, to verify that the
# autopkgtest check: Build and run a program against gz-cmake, to verify that the
# cmake modules are installed
# (C) 2012 Jose Luis Rivero
# Author: Jose Luis Rivero <[email protected]>
Expand All @@ -17,20 +17,20 @@ cmake_minimum_required(VERSION 3.5)
project(test VERSION 1.0.0)

#============================================================================
# Find ignition-cmake3
# Find gz-cmake3
#============================================================================
# If you get an error at this line, you need to install ignition-cmake3
find_package(ignition-cmake3 REQUIRED)
# If you get an error at this line, you need to install gz-cmake3
find_package(gz-cmake3 REQUIRED)

#============================================================================
# Set up the project
#============================================================================
ign_configure_project()
gz_configure_project()

#============================================================================
# Configure the build
#============================================================================
ign_configure_build(QUIT_IF_BUILD_ERRORS)
gz_configure_build(QUIT_IF_BUILD_ERRORS)
EOF

cmake .
Expand Down