├── .clang-format ├── .github ├── actions │ └── docker │ │ └── action.yml └── workflows │ ├── master.yml │ ├── qwen.yml │ ├── reusable_deb.yaml │ ├── reusable_dox.yaml │ ├── reusable_test.yaml │ └── tag.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ccws ├── doc │ └── cross_compilation.md ├── examples │ ├── .ccws │ │ ├── ccws.tests.exceptions.packages │ │ ├── cppcheck.exceptions.packages │ │ ├── cppcheck.exceptions.paths │ │ ├── static_checks.exceptions.packages │ │ └── static_checks.exceptions.paths │ ├── Dockerfile │ ├── Dockerfile.qwen │ ├── Jenkinsfile.example │ ├── pkg_ament │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── package.xml │ └── pkg_catkin │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── launch │ │ └── bringup.launch │ │ ├── package.xml │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── demo_gtest.cpp │ │ ├── demo_rostest.cpp │ │ ├── demo_rostest.test │ │ └── demo_rostest_parametrized.test ├── make │ ├── ai.mk │ ├── clean.mk │ ├── cloudsmith.mk │ ├── conan.mk │ ├── cross.mk │ ├── dependency.mk │ ├── docker.mk │ ├── install.mk │ ├── new.mk │ ├── nix.mk │ ├── profile.mk │ ├── source_space.mk │ ├── test.mk │ ├── utils.mk │ └── vcpkg.mk ├── profiles │ ├── build │ │ ├── addr_undef_sanitizers │ │ │ ├── README.md │ │ │ ├── address.supp │ │ │ ├── leak.supp │ │ │ ├── setup.bash │ │ │ ├── toolchain.cmake │ │ │ ├── toolchain_body.cmake │ │ │ └── undefined.supp │ │ ├── clang_tidy │ │ │ ├── clang_tidy_config.yaml │ │ │ ├── setup.bash │ │ │ ├── targets.mk │ │ │ ├── toolchain.cmake │ │ │ └── toolchain_body.cmake │ │ ├── clangd │ │ │ ├── setup.bash │ │ │ └── targets.mk │ │ ├── common │ │ │ ├── cmake │ │ │ │ ├── ccws_conan_install.cmake │ │ │ │ ├── ccws_set_cmake_flags.cmake │ │ │ │ └── ccws_vcpkg_install.cmake │ │ │ ├── colcon │ │ │ │ └── defaults.yaml │ │ │ ├── setup.bash │ │ │ ├── toolchain.cmake │ │ │ └── toolchain_suffix.cmake │ │ ├── cppcheck │ │ │ ├── setup.bash │ │ │ └── targets.mk │ │ ├── cross_arm64 │ │ │ ├── setup.bash │ │ │ ├── targets.mk │ │ │ ├── toolchain.cmake │ │ │ └── toolchain_body.cmake │ │ ├── cross_jetson_nano │ │ │ ├── setup.bash │ │ │ ├── targets.mk │ │ │ └── toolchain.cmake │ │ ├── cross_jetson_xavier │ │ │ ├── nvidia.mk │ │ │ ├── setup.bash │ │ │ ├── targets.mk │ │ │ ├── toolchain.cmake │ │ │ └── toolchain_body.cmake │ │ ├── cross_raspberry_pi │ │ │ ├── setup.bash │ │ │ ├── targets.mk │ │ │ ├── toolchain.cmake │ │ │ └── toolchain_body.cmake │ │ ├── deb │ │ │ ├── bin │ │ │ │ ├── control.sh │ │ │ │ ├── postinst.sh │ │ │ │ ├── postrm.sh │ │ │ │ ├── preinst.sh │ │ │ │ └── prerm.sh │ │ │ ├── lintian_bionic.supp │ │ │ ├── lintian_focal.supp │ │ │ ├── lintian_jammy.supp │ │ │ ├── lintian_noble.supp │ │ │ ├── setup.bash │ │ │ └── targets.mk │ │ ├── doxygen │ │ │ ├── Doxyfile │ │ │ ├── DoxygenLayout.xml │ │ │ ├── cppreference-doxygen-web.tag.xml │ │ │ ├── index_footer.md │ │ │ ├── index_header.md │ │ │ ├── pandoc │ │ │ │ ├── skylighting-solarized-theme.css │ │ │ │ ├── template.html5 │ │ │ │ └── theme.css │ │ │ ├── setup.bash │ │ │ └── targets.mk │ │ ├── reldebug │ │ │ ├── setup.bash │ │ │ ├── toolchain.cmake │ │ │ └── toolchain_body.cmake │ │ ├── scan_build │ │ │ ├── setup.bash │ │ │ ├── targets.mk │ │ │ ├── toolchain.cmake │ │ │ └── toolchain_body.cmake │ │ ├── static_checks │ │ │ ├── flake8 │ │ │ ├── pylintrc │ │ │ ├── setup.bash │ │ │ └── targets.mk │ │ └── thread_sanitizer │ │ │ ├── setup.bash │ │ │ ├── thread.supp │ │ │ ├── toolchain.cmake │ │ │ └── toolchain_body.cmake │ ├── exec │ │ ├── address_sanitizer │ │ │ └── setup.bash │ │ ├── common │ │ │ └── setup.bash │ │ ├── core_pattern │ │ │ └── setup.bash │ │ ├── test │ │ │ └── setup.bash │ │ └── valgrind │ │ │ ├── setup.bash │ │ │ ├── targets.mk │ │ │ └── valgrind.supp │ ├── template_build │ │ ├── setup.bash │ │ ├── targets.mk │ │ └── toolchain.cmake │ └── template_exec │ │ ├── setup.bash │ │ └── targets.mk ├── qwen │ ├── context.md │ └── settings.json ├── tests │ ├── conan │ │ ├── conan_deps │ │ │ ├── CMakeLists.txt │ │ │ └── package.xml │ │ └── conan_test │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── package.xml │ ├── dependencies │ │ └── package.xml │ ├── nix │ │ └── nix_test │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── package.xml │ ├── test_conan.mk │ ├── test_cross.mk │ ├── test_cross_ros2.mk │ ├── test_main.mk │ ├── test_main_ros2.mk │ ├── test_main_ros2_ccws2.mk │ ├── test_nix.mk │ ├── test_vcpkg.mk │ └── vcpkg │ │ ├── vcpkg_deps │ │ ├── CMakeLists.txt │ │ └── package.xml │ │ └── vcpkg_test │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── package.xml └── tools │ ├── bin │ ├── bootstrap.sh │ ├── ccws_extract_debug_info.sh │ ├── ccws_guess_jobs.sh │ ├── ccws_move_dev_files.sh │ ├── docker-image-extract │ └── wshandler │ └── proot │ ├── cmake │ ├── common.bash │ └── rosdep └── setup.bash /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/actions/docker/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.github/actions/docker/action.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/qwen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.github/workflows/qwen.yml -------------------------------------------------------------------------------- /.github/workflows/reusable_deb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.github/workflows/reusable_deb.yaml -------------------------------------------------------------------------------- /.github/workflows/reusable_dox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.github/workflows/reusable_dox.yaml -------------------------------------------------------------------------------- /.github/workflows/reusable_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.github/workflows/reusable_test.yaml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/README.md -------------------------------------------------------------------------------- /ccws/doc/cross_compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/doc/cross_compilation.md -------------------------------------------------------------------------------- /ccws/examples/.ccws/ccws.tests.exceptions.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/.ccws/ccws.tests.exceptions.packages -------------------------------------------------------------------------------- /ccws/examples/.ccws/cppcheck.exceptions.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/.ccws/cppcheck.exceptions.packages -------------------------------------------------------------------------------- /ccws/examples/.ccws/cppcheck.exceptions.paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/.ccws/cppcheck.exceptions.paths -------------------------------------------------------------------------------- /ccws/examples/.ccws/static_checks.exceptions.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/.ccws/static_checks.exceptions.packages -------------------------------------------------------------------------------- /ccws/examples/.ccws/static_checks.exceptions.paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/.ccws/static_checks.exceptions.paths -------------------------------------------------------------------------------- /ccws/examples/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/Dockerfile -------------------------------------------------------------------------------- /ccws/examples/Dockerfile.qwen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/Dockerfile.qwen -------------------------------------------------------------------------------- /ccws/examples/Jenkinsfile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/Jenkinsfile.example -------------------------------------------------------------------------------- /ccws/examples/pkg_ament/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_ament/CMakeLists.txt -------------------------------------------------------------------------------- /ccws/examples/pkg_ament/README.md: -------------------------------------------------------------------------------- 1 | @@PACKAGE@@ 2 | -------------------------------------------------------------------------------- /ccws/examples/pkg_ament/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_ament/package.xml -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_catkin/CMakeLists.txt -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/README.md: -------------------------------------------------------------------------------- 1 | @@PACKAGE@@ 2 | -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/launch/bringup.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_catkin/launch/bringup.launch -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_catkin/package.xml -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_catkin/test/CMakeLists.txt -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/test/demo_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_catkin/test/demo_gtest.cpp -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/test/demo_rostest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_catkin/test/demo_rostest.cpp -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/test/demo_rostest.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_catkin/test/demo_rostest.test -------------------------------------------------------------------------------- /ccws/examples/pkg_catkin/test/demo_rostest_parametrized.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/examples/pkg_catkin/test/demo_rostest_parametrized.test -------------------------------------------------------------------------------- /ccws/make/ai.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/ai.mk -------------------------------------------------------------------------------- /ccws/make/clean.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/clean.mk -------------------------------------------------------------------------------- /ccws/make/cloudsmith.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/cloudsmith.mk -------------------------------------------------------------------------------- /ccws/make/conan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/conan.mk -------------------------------------------------------------------------------- /ccws/make/cross.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/cross.mk -------------------------------------------------------------------------------- /ccws/make/dependency.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/dependency.mk -------------------------------------------------------------------------------- /ccws/make/docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/docker.mk -------------------------------------------------------------------------------- /ccws/make/install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/install.mk -------------------------------------------------------------------------------- /ccws/make/new.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/new.mk -------------------------------------------------------------------------------- /ccws/make/nix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/nix.mk -------------------------------------------------------------------------------- /ccws/make/profile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/profile.mk -------------------------------------------------------------------------------- /ccws/make/source_space.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/source_space.mk -------------------------------------------------------------------------------- /ccws/make/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/test.mk -------------------------------------------------------------------------------- /ccws/make/utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/utils.mk -------------------------------------------------------------------------------- /ccws/make/vcpkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/make/vcpkg.mk -------------------------------------------------------------------------------- /ccws/profiles/build/addr_undef_sanitizers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/addr_undef_sanitizers/README.md -------------------------------------------------------------------------------- /ccws/profiles/build/addr_undef_sanitizers/address.supp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccws/profiles/build/addr_undef_sanitizers/leak.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/addr_undef_sanitizers/leak.supp -------------------------------------------------------------------------------- /ccws/profiles/build/addr_undef_sanitizers/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/addr_undef_sanitizers/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/addr_undef_sanitizers/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/addr_undef_sanitizers/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/addr_undef_sanitizers/toolchain_body.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/addr_undef_sanitizers/toolchain_body.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/addr_undef_sanitizers/undefined.supp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccws/profiles/build/clang_tidy/clang_tidy_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/clang_tidy/clang_tidy_config.yaml -------------------------------------------------------------------------------- /ccws/profiles/build/clang_tidy/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/clang_tidy/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/clang_tidy/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/clang_tidy/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/clang_tidy/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/clang_tidy/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/clang_tidy/toolchain_body.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/clang_tidy/toolchain_body.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/clangd/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/clangd/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/clangd/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/clangd/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/common/cmake/ccws_conan_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/common/cmake/ccws_conan_install.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/common/cmake/ccws_set_cmake_flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/common/cmake/ccws_set_cmake_flags.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/common/cmake/ccws_vcpkg_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/common/cmake/ccws_vcpkg_install.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/common/colcon/defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/common/colcon/defaults.yaml -------------------------------------------------------------------------------- /ccws/profiles/build/common/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/common/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/common/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/common/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/common/toolchain_suffix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/common/toolchain_suffix.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/cppcheck/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cppcheck/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/cppcheck/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cppcheck/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/cross_arm64/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_arm64/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/cross_arm64/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_arm64/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/cross_arm64/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_arm64/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/cross_arm64/toolchain_body.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_arm64/toolchain_body.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/cross_jetson_nano/setup.bash: -------------------------------------------------------------------------------- 1 | ../cross_jetson_xavier/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/cross_jetson_nano/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_jetson_nano/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/cross_jetson_nano/toolchain.cmake: -------------------------------------------------------------------------------- 1 | ../cross_jetson_xavier/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/cross_jetson_xavier/nvidia.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_jetson_xavier/nvidia.mk -------------------------------------------------------------------------------- /ccws/profiles/build/cross_jetson_xavier/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_jetson_xavier/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/cross_jetson_xavier/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_jetson_xavier/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/cross_jetson_xavier/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_jetson_xavier/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/cross_jetson_xavier/toolchain_body.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_jetson_xavier/toolchain_body.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/cross_raspberry_pi/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_raspberry_pi/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/cross_raspberry_pi/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_raspberry_pi/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/cross_raspberry_pi/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_raspberry_pi/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/cross_raspberry_pi/toolchain_body.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/cross_raspberry_pi/toolchain_body.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/deb/bin/control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/bin/control.sh -------------------------------------------------------------------------------- /ccws/profiles/build/deb/bin/postinst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/bin/postinst.sh -------------------------------------------------------------------------------- /ccws/profiles/build/deb/bin/postrm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/bin/postrm.sh -------------------------------------------------------------------------------- /ccws/profiles/build/deb/bin/preinst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/bin/preinst.sh -------------------------------------------------------------------------------- /ccws/profiles/build/deb/bin/prerm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/bin/prerm.sh -------------------------------------------------------------------------------- /ccws/profiles/build/deb/lintian_bionic.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/lintian_bionic.supp -------------------------------------------------------------------------------- /ccws/profiles/build/deb/lintian_focal.supp: -------------------------------------------------------------------------------- 1 | lintian_bionic.supp -------------------------------------------------------------------------------- /ccws/profiles/build/deb/lintian_jammy.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/lintian_jammy.supp -------------------------------------------------------------------------------- /ccws/profiles/build/deb/lintian_noble.supp: -------------------------------------------------------------------------------- 1 | lintian_jammy.supp -------------------------------------------------------------------------------- /ccws/profiles/build/deb/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/deb/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/deb/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/Doxyfile -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/DoxygenLayout.xml -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/cppreference-doxygen-web.tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/cppreference-doxygen-web.tag.xml -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/index_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/index_footer.md -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/index_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/index_header.md -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/pandoc/skylighting-solarized-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/pandoc/skylighting-solarized-theme.css -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/pandoc/template.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/pandoc/template.html5 -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/pandoc/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/pandoc/theme.css -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/doxygen/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/doxygen/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/reldebug/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/reldebug/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/reldebug/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/reldebug/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/reldebug/toolchain_body.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/reldebug/toolchain_body.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/scan_build/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/scan_build/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/scan_build/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/scan_build/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/scan_build/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/scan_build/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/scan_build/toolchain_body.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/scan_build/toolchain_body.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/static_checks/flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/static_checks/flake8 -------------------------------------------------------------------------------- /ccws/profiles/build/static_checks/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/static_checks/pylintrc -------------------------------------------------------------------------------- /ccws/profiles/build/static_checks/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/static_checks/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/static_checks/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/static_checks/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/build/thread_sanitizer/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/thread_sanitizer/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/build/thread_sanitizer/thread.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/thread_sanitizer/thread.supp -------------------------------------------------------------------------------- /ccws/profiles/build/thread_sanitizer/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/thread_sanitizer/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/build/thread_sanitizer/toolchain_body.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/build/thread_sanitizer/toolchain_body.cmake -------------------------------------------------------------------------------- /ccws/profiles/exec/address_sanitizer/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/exec/address_sanitizer/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/exec/common/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/exec/common/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/exec/core_pattern/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/exec/core_pattern/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/exec/test/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/exec/test/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/exec/valgrind/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/exec/valgrind/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/exec/valgrind/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/exec/valgrind/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/exec/valgrind/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/exec/valgrind/valgrind.supp -------------------------------------------------------------------------------- /ccws/profiles/template_build/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/template_build/setup.bash -------------------------------------------------------------------------------- /ccws/profiles/template_build/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/template_build/targets.mk -------------------------------------------------------------------------------- /ccws/profiles/template_build/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/profiles/template_build/toolchain.cmake -------------------------------------------------------------------------------- /ccws/profiles/template_exec/setup.bash: -------------------------------------------------------------------------------- 1 | #!/bin/bash -x 2 | 3 | -------------------------------------------------------------------------------- /ccws/profiles/template_exec/targets.mk: -------------------------------------------------------------------------------- 1 | #ep_@@EXEC_PROFILE@@_install: 2 | # sudo ${APT_INSTALL} 3 | 4 | -------------------------------------------------------------------------------- /ccws/qwen/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/qwen/context.md -------------------------------------------------------------------------------- /ccws/qwen/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/qwen/settings.json -------------------------------------------------------------------------------- /ccws/tests/conan/conan_deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/conan/conan_deps/CMakeLists.txt -------------------------------------------------------------------------------- /ccws/tests/conan/conan_deps/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/conan/conan_deps/package.xml -------------------------------------------------------------------------------- /ccws/tests/conan/conan_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/conan/conan_test/CMakeLists.txt -------------------------------------------------------------------------------- /ccws/tests/conan/conan_test/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /ccws/tests/conan/conan_test/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/conan/conan_test/package.xml -------------------------------------------------------------------------------- /ccws/tests/dependencies/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/dependencies/package.xml -------------------------------------------------------------------------------- /ccws/tests/nix/nix_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/nix/nix_test/CMakeLists.txt -------------------------------------------------------------------------------- /ccws/tests/nix/nix_test/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /ccws/tests/nix/nix_test/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/nix/nix_test/package.xml -------------------------------------------------------------------------------- /ccws/tests/test_conan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/test_conan.mk -------------------------------------------------------------------------------- /ccws/tests/test_cross.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/test_cross.mk -------------------------------------------------------------------------------- /ccws/tests/test_cross_ros2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/test_cross_ros2.mk -------------------------------------------------------------------------------- /ccws/tests/test_main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/test_main.mk -------------------------------------------------------------------------------- /ccws/tests/test_main_ros2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/test_main_ros2.mk -------------------------------------------------------------------------------- /ccws/tests/test_main_ros2_ccws2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/test_main_ros2_ccws2.mk -------------------------------------------------------------------------------- /ccws/tests/test_nix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/test_nix.mk -------------------------------------------------------------------------------- /ccws/tests/test_vcpkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/test_vcpkg.mk -------------------------------------------------------------------------------- /ccws/tests/vcpkg/vcpkg_deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/vcpkg/vcpkg_deps/CMakeLists.txt -------------------------------------------------------------------------------- /ccws/tests/vcpkg/vcpkg_deps/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/vcpkg/vcpkg_deps/package.xml -------------------------------------------------------------------------------- /ccws/tests/vcpkg/vcpkg_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/vcpkg/vcpkg_test/CMakeLists.txt -------------------------------------------------------------------------------- /ccws/tests/vcpkg/vcpkg_test/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /ccws/tests/vcpkg/vcpkg_test/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tests/vcpkg/vcpkg_test/package.xml -------------------------------------------------------------------------------- /ccws/tools/bin/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/bin/bootstrap.sh -------------------------------------------------------------------------------- /ccws/tools/bin/ccws_extract_debug_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/bin/ccws_extract_debug_info.sh -------------------------------------------------------------------------------- /ccws/tools/bin/ccws_guess_jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/bin/ccws_guess_jobs.sh -------------------------------------------------------------------------------- /ccws/tools/bin/ccws_move_dev_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/bin/ccws_move_dev_files.sh -------------------------------------------------------------------------------- /ccws/tools/bin/docker-image-extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/bin/docker-image-extract -------------------------------------------------------------------------------- /ccws/tools/bin/wshandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/bin/wshandler -------------------------------------------------------------------------------- /ccws/tools/proot/cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/proot/cmake -------------------------------------------------------------------------------- /ccws/tools/proot/common.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/proot/common.bash -------------------------------------------------------------------------------- /ccws/tools/proot/rosdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/ccws/tools/proot/rosdep -------------------------------------------------------------------------------- /setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asherikov/ccws/HEAD/setup.bash --------------------------------------------------------------------------------