From 6a0df39e3969d490d8c5ead4e3aaf76ae9d67fe2 Mon Sep 17 00:00:00 2001 From: nancy.liao <huihui.liao@greentest.com.cn> Date: 周二, 27 5月 2025 17:03:57 +0800 Subject: [PATCH] update ignore --- src/CMakeLists.txt | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 29994bd..fcff40d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,8 +1,11 @@ -add_subdirectory("bootstrap") +IF (NOT LCC_PROJECT_MAGIC_NUM) + set(LCC_PROJECT_MAGIC_NUM 0) +ENDIF (NOT LCC_PROJECT_MAGIC_NUM) + +IF(NOT EXISTS "${LCC_INCLUDE_DIR}/licensecc_properties.h") + configure_file ("templates/licensecc_properties.h.in" + "${LCC_INCLUDE_DIR}/licensecc_properties.h") +ENDIF(NOT EXISTS "${LCC_INCLUDE_DIR}/licensecc_properties.h") + add_subdirectory("library") -IF(Boost_FOUND) - add_subdirectory("pc-identifier") - add_subdirectory("license-generator") -ENDIF(Boost_FOUND) - \ No newline at end of file -- Gitblit v1.9.1