diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-12-03 22:13:08 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-12-03 22:13:08 +0100 |
commit | f160c92d06446bd90b8ac4e1d238ecabb0c97651 (patch) | |
tree | b9f72bb39f29393006340fbcf80f0e104c48957f | |
parent | 57c46baaea2384c1caed46033f6bdb3c5c3a75da (diff) | |
download | libquotient-f160c92d06446bd90b8ac4e1d238ecabb0c97651.tar.gz libquotient-f160c92d06446bd90b8ac4e1d238ecabb0c97651.zip |
CMakeLists.txt: fix configuration failures
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 393ee94f..eb3f9528 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -135,9 +135,9 @@ if (ABS_GTAD_PATH AND ABS_API_DEF_PATH) message( STATUS "${CLANG_FORMAT} is NOT FOUND; API files won't be reformatted") endif () endif() -add_feature_info(EnableApiCodeGeneration ${API_GENERATION_ENABLED} +add_feature_info(EnableApiCodeGeneration "${API_GENERATION_ENABLED}" "build target update-api") -add_feature_info(EnableApiFormatting ${API_FORMATTING_ENABLED} +add_feature_info(EnableApiFormatting "${API_FORMATTING_ENABLED}" "formatting of generated API files with clang-format") message(STATUS) |