[cpprestsdk] CMake build system improvements (#10660)

* cmake install support

* fix option overriding issue

* fix alignment
This commit is contained in:
Sergii Baitala
2021-10-29 04:58:29 +03:00
committed by GitHub
parent d1b61bdc04
commit bf77570934
20 changed files with 180 additions and 166 deletions

View File

@@ -12,6 +12,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|defaultInclude|The default include statement that should be placed in all headers for including things like the declspec (convention: #include "Commons.h" | ||
|generateGMocksForApis|Generate Google Mock classes for APIs.| |null|
|modelPackage|C++ namespace for models (convention: name.space.model).| |org.openapitools.client.model|
|packageName|C++ package (library) name.| |CppRestOpenAPIClient|
|packageVersion|C++ package version.| |1.0.0|
|reservedWordPrefix|Prefix to prepend to reserved words in order to avoid conflicts| |r_|
|variableNameFirstCharacterUppercase|Make first character of variable name uppercase (eg. value -> Value)| |true|