cmServerDictionary.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2016 Tobias Hunger <[email protected]>
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #pragma once
  11. #include <string>
  12. // Vocabulary:
  13. static const std::string kCONFIGURE_TYPE = "configure";
  14. static const std::string kERROR_TYPE = "error";
  15. static const std::string kGLOBAL_SETTINGS_TYPE = "globalSettings";
  16. static const std::string kHANDSHAKE_TYPE = "handshake";
  17. static const std::string kMESSAGE_TYPE = "message";
  18. static const std::string kPROGRESS_TYPE = "progress";
  19. static const std::string kREPLY_TYPE = "reply";
  20. static const std::string kSET_GLOBAL_SETTINGS_TYPE = "setGlobalSettings";
  21. static const std::string kSIGNAL_TYPE = "signal";
  22. static const std::string kBUILD_DIRECTORY_KEY = "buildDirectory";
  23. static const std::string kCACHE_ARGUMENTS_KEY = "cacheArguments";
  24. static const std::string kCAPABILITIES_KEY = "capabilities";
  25. static const std::string kCHECK_SYSTEM_VARS_KEY = "checkSystemVars";
  26. static const std::string kCOOKIE_KEY = "cookie";
  27. static const std::string kDEBUG_OUTPUT_KEY = "debugOutput";
  28. static const std::string kERROR_MESSAGE_KEY = "errorMessage";
  29. static const std::string kEXTRA_GENERATOR_KEY = "extraGenerator";
  30. static const std::string kGENERATOR_KEY = "generator";
  31. static const std::string kIS_EXPERIMENTAL_KEY = "isExperimental";
  32. static const std::string kMAJOR_KEY = "major";
  33. static const std::string kMESSAGE_KEY = "message";
  34. static const std::string kMINOR_KEY = "minor";
  35. static const std::string kNAME_KEY = "name";
  36. static const std::string kPROGRESS_CURRENT_KEY = "progressCurrent";
  37. static const std::string kPROGRESS_MAXIMUM_KEY = "progressMaximum";
  38. static const std::string kPROGRESS_MESSAGE_KEY = "progressMessage";
  39. static const std::string kPROGRESS_MINIMUM_KEY = "progressMinimum";
  40. static const std::string kPROTOCOL_VERSION_KEY = "protocolVersion";
  41. static const std::string kREPLY_TO_KEY = "inReplyTo";
  42. static const std::string kSOURCE_DIRECTORY_KEY = "sourceDirectory";
  43. static const std::string kSUPPORTED_PROTOCOL_VERSIONS =
  44. "supportedProtocolVersions";
  45. static const std::string kTITLE_KEY = "title";
  46. static const std::string kTRACE_EXPAND_KEY = "traceExpand";
  47. static const std::string kTRACE_KEY = "trace";
  48. static const std::string kTYPE_KEY = "type";
  49. static const std::string kWARN_UNINITIALIZED_KEY = "warnUninitialized";
  50. static const std::string kWARN_UNUSED_CLI_KEY = "warnUnusedCli";
  51. static const std::string kWARN_UNUSED_KEY = "warnUnused";
  52. static const std::string kSTART_MAGIC = "[== CMake Server ==[";
  53. static const std::string kEND_MAGIC = "]== CMake Server ==]";