Lib39/cpp/Config.cmake.in
3944Realms f062be7f51 更新内容
1. 加解密ClassLoader
2. 帮助指令管理器
2025-12-23 20:35:40 +08:00

17 lines
344 B
CMake

# Config.cmake.in
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
# 查找依赖
find_dependency(Java COMPONENTS Development)
if(@USE_OPENSSL@)
find_dependency(OpenSSL REQUIRED)
endif()
# 导入目标
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
# 检查目标是否存在
check_required_components(@PROJECT_NAME@)