From 6a262b62f0a08d332d83b54249a81971566a9fb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uglje=C5=A1a=20Luke=C5=A1evi=C4=87?= <84191191+ukicomputers@users.noreply.github.com> Date: Thu, 3 Oct 2024 21:00:22 +0200 Subject: [PATCH] Don't use a specific version for the package (CMake throws and error) --- examples/main-cmake-pkg/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/main-cmake-pkg/CMakeLists.txt b/examples/main-cmake-pkg/CMakeLists.txt index 3b38db292..46b996557 100644 --- a/examples/main-cmake-pkg/CMakeLists.txt +++ b/examples/main-cmake-pkg/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) project("llama-cli-cmake-pkg" C CXX) set(TARGET llama-cli-cmake-pkg) -find_package(Llama 0.0.1 REQUIRED) +find_package(Llama QUIET) # Bake common functionality in with target. Because applications # using the relocatable Llama package should be outside of the