intial commit
Showing
- EtsiServerGen/.gitignore 29 additions, 0 deletionsEtsiServerGen/.gitignore
- EtsiServerGen/.openapi-generator-ignore 27 additions, 0 deletionsEtsiServerGen/.openapi-generator-ignore
- EtsiServerGen/CMakeLists.txt 78 additions, 0 deletionsEtsiServerGen/CMakeLists.txt
- EtsiServerGen/conanfile.txt 12 additions, 0 deletionsEtsiServerGen/conanfile.txt
- EtsiServerGen/patches/applyPatches.sh 4 additions, 0 deletionsEtsiServerGen/patches/applyPatches.sh
- EtsiServerGen/patches/fixCppDefaultApi.patch 11 additions, 0 deletionsEtsiServerGen/patches/fixCppDefaultApi.patch
- EtsiServerGen/patches/fixCppPoseApi.patch 11 additions, 0 deletionsEtsiServerGen/patches/fixCppPoseApi.patch
- EtsiServerGen/patches/fixHeaderDefaultApi.patch 11 additions, 0 deletionsEtsiServerGen/patches/fixHeaderDefaultApi.patch
- LICENSE 201 additions, 0 deletionsLICENSE
- README.md 51 additions, 61 deletionsREADME.md
- package-lock.json 2289 additions, 0 deletionspackage-lock.json
- package.json 30 additions, 0 deletionspackage.json
EtsiServerGen/.gitignore
0 → 100644
EtsiServerGen/.openapi-generator-ignore
0 → 100644
EtsiServerGen/CMakeLists.txt
0 → 100644
EtsiServerGen/conanfile.txt
0 → 100644
EtsiServerGen/patches/applyPatches.sh
0 → 100755
EtsiServerGen/patches/fixCppDefaultApi.patch
0 → 100644
EtsiServerGen/patches/fixCppPoseApi.patch
0 → 100644
LICENSE
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"//": [ | |||
"ARF - Augmented Reality Framework (ETSI ISG ARF)", | |||
"Copyright 2022 ETSI", | |||
"Licensed under the Apache License, Version 2.0 (the \"License\");", | |||
"you may not use this file except in compliance with the License.", | |||
"You may obtain a copy of the License at", | |||
"http://www.apache.org/licenses/LICENSE-2.0", | |||
"Unless required by applicable law or agreed to in writing, software", | |||
"distributed under the License is distributed on an \"AS IS\" BASIS,", | |||
"WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", | |||
"See the License for the specific language governing permissions and", | |||
"limitations under the License.", | |||
"Last change: June 2022" | |||
], | |||
"name": "worldanalysisserver", | |||
"version": "2.1.0", | |||
"description": "ISG ARF World Analysis Cpp Server", | |||
"main": "index.js", | |||
"scripts": { | |||
"generate": "cd EtsiServerGen && java -jar /usr/local/lib/node_modules/@openapitools/openapi-generator-cli/versions/7.5.0.jar generate -i ../arf005/API/worldanalysis/worldanalysisopenapi.yaml --skip-validate-spec -g cpp-restbed-server -o . && cd patches && ./applyPatches.sh", | |||
"build": "cd EtsiServerGen && conan install . --build=missing && cd build && cmake .. --preset conan-release && cd Release && cmake --build . && sudo make install" | |||
}, | |||
"devDependencies": { | |||
"@openapitools/openapi-generator-cli": "^2.7.0" | |||
}, | |||
"generator-cli": { | |||
"version": "7.8.0" | |||
} | |||
} |
Please register or sign in to comment