summaryrefslogtreecommitdiffstats
path: root/Source/cmJsonObjectDictionary.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-09-24 11:07:30 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-09-24 11:07:38 (GMT)
commit03ffd442bd34e2a3478b125ef1055837926bcd0c (patch)
treefb874d2868b9e019ab57674d134bed9503c122b8 /Source/cmJsonObjectDictionary.h
parenta7aef7a1820b24050ecdc1acb02cf790c1d8e065 (diff)
parent72b4c2c48ae7dfd8c2813018c72ed0d2e6bb907a (diff)
downloadCMake-03ffd442bd34e2a3478b125ef1055837926bcd0c.zip
CMake-03ffd442bd34e2a3478b125ef1055837926bcd0c.tar.gz
CMake-03ffd442bd34e2a3478b125ef1055837926bcd0c.tar.bz2
Merge topic 'server-separate-json'
72b4c2c48a server: Compile json object generation source separately b48165346f server: Split json dictionary into separate header 85be67217b server: Split json object generation into separate source aabce52851 server: factor out json object generation entry points fc43492e44 cmake: Factor json version object construction into helper Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2408
Diffstat (limited to 'Source/cmJsonObjectDictionary.h')
-rw-r--r--Source/cmJsonObjectDictionary.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/Source/cmJsonObjectDictionary.h b/Source/cmJsonObjectDictionary.h
new file mode 100644
index 0000000..a4d41f3
--- /dev/null
+++ b/Source/cmJsonObjectDictionary.h
@@ -0,0 +1,46 @@
+/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
+ file Copyright.txt or https://cmake.org/licensing for details. */
+#pragma once
+
+#include <string>
+
+// Vocabulary:
+
+static const std::string kARTIFACTS_KEY = "artifacts";
+static const std::string kBUILD_DIRECTORY_KEY = "buildDirectory";
+static const std::string kCOMPILE_FLAGS_KEY = "compileFlags";
+static const std::string kCONFIGURATIONS_KEY = "configurations";
+static const std::string kDEFINES_KEY = "defines";
+static const std::string kFILE_GROUPS_KEY = "fileGroups";
+static const std::string kFRAMEWORK_PATH_KEY = "frameworkPath";
+static const std::string kFULL_NAME_KEY = "fullName";
+static const std::string kINCLUDE_PATH_KEY = "includePath";
+static const std::string kIS_CMAKE_KEY = "isCMake";
+static const std::string kIS_GENERATED_KEY = "isGenerated";
+static const std::string kIS_SYSTEM_KEY = "isSystem";
+static const std::string kIS_TEMPORARY_KEY = "isTemporary";
+static const std::string kKEY_KEY = "key";
+static const std::string kLANGUAGE_KEY = "language";
+static const std::string kLINKER_LANGUAGE_KEY = "linkerLanguage";
+static const std::string kLINK_FLAGS_KEY = "linkFlags";
+static const std::string kLINK_LANGUAGE_FLAGS_KEY = "linkLanguageFlags";
+static const std::string kLINK_LIBRARIES_KEY = "linkLibraries";
+static const std::string kLINK_PATH_KEY = "linkPath";
+static const std::string kNAME_KEY = "name";
+static const std::string kPATH_KEY = "path";
+static const std::string kPROJECTS_KEY = "projects";
+static const std::string kPROPERTIES_KEY = "properties";
+static const std::string kSOURCE_DIRECTORY_KEY = "sourceDirectory";
+static const std::string kSOURCES_KEY = "sources";
+static const std::string kSYSROOT_KEY = "sysroot";
+static const std::string kTARGETS_KEY = "targets";
+static const std::string kTYPE_KEY = "type";
+static const std::string kVALUE_KEY = "value";
+static const std::string kHAS_INSTALL_RULE = "hasInstallRule";
+static const std::string kINSTALL_PATHS = "installPaths";
+static const std::string kCTEST_NAME = "ctestName";
+static const std::string kCTEST_COMMAND = "ctestCommand";
+static const std::string kCTEST_INFO = "ctestInfo";
+static const std::string kMINIMUM_CMAKE_VERSION = "minimumCMakeVersion";
+static const std::string kIS_GENERATOR_PROVIDED_KEY = "isGeneratorProvided";
+static const std::string kIS_INTERFACE_SOURCES_KEY = "isInterfaceSources";