├── .travis.yml ├── README.md ├── docker ├── Dockerfile ├── README.md └── generate ├── examples ├── CMakeLists.txt ├── HelloWorld.fdepl ├── HelloWorld.fidl ├── HelloWorldClient.cpp ├── HelloWorldService.cpp ├── HelloWorldStubImpl.cpp └── HelloWorldStubImpl.hpp ├── generate-someip-cmakelists.sh ├── patch ├── .gitkeep └── 0001-Fix-gcc8-build-error.patch ├── remove_source_code.sh ├── run-in-docker.sh ├── test_dbus.sh └── test_someip.sh /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/docker/generate -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/HelloWorld.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/examples/HelloWorld.fdepl -------------------------------------------------------------------------------- /examples/HelloWorld.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/examples/HelloWorld.fidl -------------------------------------------------------------------------------- /examples/HelloWorldClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/examples/HelloWorldClient.cpp -------------------------------------------------------------------------------- /examples/HelloWorldService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/examples/HelloWorldService.cpp -------------------------------------------------------------------------------- /examples/HelloWorldStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/examples/HelloWorldStubImpl.cpp -------------------------------------------------------------------------------- /examples/HelloWorldStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/examples/HelloWorldStubImpl.hpp -------------------------------------------------------------------------------- /generate-someip-cmakelists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/generate-someip-cmakelists.sh -------------------------------------------------------------------------------- /patch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patch/0001-Fix-gcc8-build-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/patch/0001-Fix-gcc8-build-error.patch -------------------------------------------------------------------------------- /remove_source_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/remove_source_code.sh -------------------------------------------------------------------------------- /run-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/run-in-docker.sh -------------------------------------------------------------------------------- /test_dbus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/test_dbus.sh -------------------------------------------------------------------------------- /test_someip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gunnarx/build-common-api-cpp-native/HEAD/test_someip.sh --------------------------------------------------------------------------------