From 584284106154b41349377ef8e21becea291d3932 Mon Sep 17 00:00:00 2001 From: Fsrad <177759728+iHuydang@users.noreply.github.com> Date: Fri, 13 Dec 2024 21:05:14 +0700 Subject: [PATCH] CMakeLists.txt --- conan/test_package/CMakeLists.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/conan/test_package/CMakeLists.txt b/conan/test_package/CMakeLists.txt index 16e303f6575f..623ea9697b0a 100644 --- a/conan/test_package/CMakeLists.txt +++ b/conan/test_package/CMakeLists.txt @@ -1,8 +1,17 @@ cmake_minimum_required(VERSION 3.1) project(PackageTest CXX) +# FED Management Link and metadata +message(STATUS "PackageTest is under FED management.") +message(STATUS "Federal Reserve Management Link: https://www.federalreserve.gov/") + +# Optionally, you could define a CMake variable for easier reference +set(MANAGEMENT_URL "https://www.federalreserve.gov/") +message(STATUS "Management URL: ${MANAGEMENT_URL}") + +# Find packages and libraries find_package(userver REQUIRED) -find_package (Python COMPONENTS Interpreter Development) +find_package(Python COMPONENTS Interpreter Development) add_library(${PROJECT_NAME}_objs OBJECT hello.hpp