![zhangyi1357](/assets/img/avatar_default.png)
* build: refactor CMake scripts to use functions for variable scope Wrap multiple CMake scripts in functions to restrict variable scope and prevent unintended resets. This ensures better modularity and maintainability in the build process while adhering to modern CMake best practices. * refactor: simplify opentelemetry fetch logic Streamline the handling of OpenTelemetry dependencies by removing unnecessary function wrappers and directly implementing the fetching logic. This improves readability and maintainability while ensuring that relevant variables are correctly set within the proper scope. * refactor: encapsulate OpenTelemetry configuration in a function Wrap the OpenTelemetry setup in a function to limit variable scope, improving code organization and maintainability.
57 lines
1.2 KiB
CMake
57 lines
1.2 KiB
CMake
# Copyright (c) 2023, AgiBot Inc.
|
|
# All rights reserved.
|
|
|
|
include(FetchContent)
|
|
|
|
message(STATUS "get jsoncpp ...")
|
|
|
|
set(jsoncpp_DOWNLOAD_URL
|
|
"https://github.com/open-source-parsers/jsoncpp/archive/1.9.6.tar.gz"
|
|
CACHE STRING "")
|
|
|
|
if(jsoncpp_LOCAL_SOURCE)
|
|
FetchContent_Declare(
|
|
jsoncpp
|
|
SOURCE_DIR ${jsoncpp_LOCAL_SOURCE}
|
|
OVERRIDE_FIND_PACKAGE)
|
|
else()
|
|
FetchContent_Declare(
|
|
jsoncpp
|
|
URL ${jsoncpp_DOWNLOAD_URL}
|
|
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
|
|
OVERRIDE_FIND_PACKAGE)
|
|
endif()
|
|
|
|
# Wrap it in a function to restrict the scope of the variables
|
|
function(get_jsoncpp)
|
|
FetchContent_GetProperties(jsoncpp)
|
|
if(NOT jsoncpp_POPULATED)
|
|
set(JSONCPP_WITH_TESTS OFF)
|
|
|
|
set(JSONCPP_WITH_POST_BUILD_UNITTEST OFF)
|
|
|
|
set(BUILD_OBJECT_LIBS OFF)
|
|
|
|
if(BUILD_SHARED_LIBS)
|
|
set(BUILD_SHARED_LIBS ON)
|
|
set(BUILD_STATIC_LIBS OFF)
|
|
else()
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
set(BUILD_STATIC_LIBS ON)
|
|
endif()
|
|
|
|
FetchContent_MakeAvailable(jsoncpp)
|
|
|
|
if(TARGET jsoncpp_static)
|
|
add_library(jsoncpp::jsoncpp ALIAS jsoncpp_static)
|
|
elseif(TARGET jsoncpp_lib)
|
|
add_library(jsoncpp::jsoncpp ALIAS jsoncpp_lib)
|
|
endif()
|
|
endif()
|
|
endfunction()
|
|
|
|
get_jsoncpp()
|
|
|
|
# import targets:
|
|
# jsoncpp::jsoncpp
|