From 5e4a6ce3501617a91ee925e50fb82bbbf0826694 Mon Sep 17 00:00:00 2001 From: Jenn Nguyen Date: Fri, 23 Aug 2024 14:18:44 -0700 Subject: [PATCH] gz-gui9: use stable branch Signed-off-by: Jenn Nguyen --- Formula/gz-gui9.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/gz-gui9.rb b/Formula/gz-gui9.rb index e166f142e..51395f3ff 100644 --- a/Formula/gz-gui9.rb +++ b/Formula/gz-gui9.rb @@ -1,11 +1,11 @@ class GzGui9 < Formula desc "Common libraries for robotics applications. GUI Library" homepage "https://github.com/gazebosim/gz-gui" - url "https://github.com/gazebosim/gz-gui.git", branch: "main" + url "https://github.com/gazebosim/gz-gui.git", branch: "gz-gui9" version "8.999.999-0-20231016" license "Apache-2.0" - head "https://github.com/gazebosim/gz-gui.git", branch: "main" + head "https://github.com/gazebosim/gz-gui.git", branch: "gz-gui9" depends_on "cmake" => [:build, :test] depends_on "pkg-config" => [:build, :test] @@ -94,7 +94,7 @@ def install } EOS (testpath/"CMakeLists.txt").write <<-EOS - cmake_minimum_required(VERSION 3.5 FATAL_ERROR) + cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR) find_package(gz-gui9 QUIET REQUIRED) add_executable(test_cmake test.cpp) target_link_libraries(test_cmake gz-gui9::gz-gui9)