├── .clang-tidy ├── .cmake-format.yaml ├── .gitattributes ├── .github └── workflows │ ├── ci.cross.arm.yml │ ├── ci.cross.mingw.yml │ ├── ci.emscripten.yml │ ├── ci.yml │ └── docs.yml ├── .gitignore ├── .gitmodules ├── .vscode └── launch.json ├── CMakeLists.txt ├── Index.cmake ├── LICENSE.txt ├── README.md ├── Taskfile.yml ├── Unlicense.txt ├── cspell.config.yaml ├── docker-compose.yml ├── docker ├── .gitattributes ├── Dockerfile ├── Dockerfile.aarch64 ├── Dockerfile.arm ├── Dockerfile.arm-bare-metal ├── Dockerfile.emscripten ├── Dockerfile.mingw ├── Taskfile.yml ├── entrypoint.emscripten.sh └── entrypoint.sh ├── docs ├── CMakeLists.txt ├── README.md ├── Taskfile.yml ├── cmake │ └── FindSphinx.cmake ├── conf.py.in ├── index.rst ├── root │ ├── css │ │ └── company_style.css │ ├── index.html │ └── js │ │ └── version_switcher.js ├── src │ ├── License.md │ ├── Readme_top.md │ ├── index.rst │ └── project_options_example.md ├── templates │ ├── layout.html │ └── versions.html └── update_versions.py ├── examples └── Taskfile.yml ├── package.json ├── src ├── Cache.cmake ├── Clang.cmake ├── Common.cmake ├── CompilerWarnings.cmake ├── Conan.cmake ├── CrossCompiler.cmake ├── Cuda.cmake ├── DetectCompiler.cmake ├── Doxygen.cmake ├── DynamicProjectOptions.cmake ├── Git.cmake ├── Hardening.cmake ├── Index.cmake ├── Linker.cmake ├── MinGW.cmake ├── Optimization.cmake ├── PackageProject.cmake ├── PreventInSourceBuilds.cmake ├── Sanitizers.cmake ├── Standards.cmake ├── StaticAnalyzers.cmake ├── SystemLink.cmake ├── Tests.cmake ├── Utilities.cmake ├── VCEnvironment.cmake ├── Vcpkg.cmake ├── detect_compiler │ └── CMakeLists.txt └── toolchains │ ├── aarch64-linux.toolchain.cmake │ ├── arm-linux.toolchain.cmake │ ├── arm.toolchain.cmake │ ├── arm64-linux.toolchain.cmake │ ├── i686-w64-mingw32.toolchain.cmake │ └── x86_64-w64-mingw32.toolchain.cmake └── tests ├── .gitignore ├── emscripten ├── .dockerignore ├── CMakeLists.txt ├── Taskfile.yml ├── main.cpp └── vcpkg.json ├── install ├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── Taskfile.yml ├── conanfile.txt ├── css │ ├── my_custom_theme.css │ └── my_custom_theme_extra.css ├── src │ └── another_main.cpp └── vcpkg.json ├── minimal ├── .dockerignore ├── CMakeLists.txt ├── Taskfile.yml ├── main.cpp └── vcpkg.json ├── myproj ├── .dockerignore ├── CMakeLists.txt ├── Taskfile.yml ├── conanfile.txt ├── include │ ├── mylib │ │ └── lib.hpp │ └── mylib2 │ │ └── lib.hpp ├── libs │ ├── CMakeLists.txt │ └── mythirdpartylib │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── Foo.hpp │ │ └── src │ │ └── Foo.cpp ├── src │ ├── main │ │ └── main.cpp │ └── mylib2 │ │ └── lib.cpp ├── tests │ └── CMakeLists.txt └── vcpkg.json ├── rpi3 ├── .dockerignore ├── CMakeLists.txt ├── Taskfile.yml ├── main.c └── main.cpp ├── rpi4-vcpkg ├── .dockerignore ├── CMakeLists.txt ├── Taskfile.yml ├── cmake │ └── my-toolchain.cmake ├── main.cpp └── vcpkg.json └── rpi4 ├── .dockerignore ├── CMakeLists.txt ├── Taskfile.yml ├── cmake └── my-toolchain.cmake └── main.cpp /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.cmake-format.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.cross.arm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.github/workflows/ci.cross.arm.yml -------------------------------------------------------------------------------- /.github/workflows/ci.cross.mingw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.github/workflows/ci.cross.mingw.yml -------------------------------------------------------------------------------- /.github/workflows/ci.emscripten.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.github/workflows/ci.emscripten.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Index.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/Index.cmake -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/Unlicense.txt -------------------------------------------------------------------------------- /cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/cspell.config.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/.gitattributes -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/Dockerfile.aarch64 -------------------------------------------------------------------------------- /docker/Dockerfile.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/Dockerfile.arm -------------------------------------------------------------------------------- /docker/Dockerfile.arm-bare-metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/Dockerfile.arm-bare-metal -------------------------------------------------------------------------------- /docker/Dockerfile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/Dockerfile.emscripten -------------------------------------------------------------------------------- /docker/Dockerfile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/Dockerfile.mingw -------------------------------------------------------------------------------- /docker/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/Taskfile.yml -------------------------------------------------------------------------------- /docker/entrypoint.emscripten.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docker/entrypoint.emscripten.sh -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | source ~/.cpprc 5 | 6 | exec "$@" 7 | -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/Taskfile.yml -------------------------------------------------------------------------------- /docs/cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /docs/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/conf.py.in -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/root/css/company_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/root/css/company_style.css -------------------------------------------------------------------------------- /docs/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/root/index.html -------------------------------------------------------------------------------- /docs/root/js/version_switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/root/js/version_switcher.js -------------------------------------------------------------------------------- /docs/src/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/src/License.md -------------------------------------------------------------------------------- /docs/src/Readme_top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/src/Readme_top.md -------------------------------------------------------------------------------- /docs/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/src/index.rst -------------------------------------------------------------------------------- /docs/src/project_options_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/src/project_options_example.md -------------------------------------------------------------------------------- /docs/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/templates/layout.html -------------------------------------------------------------------------------- /docs/templates/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/templates/versions.html -------------------------------------------------------------------------------- /docs/update_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/docs/update_versions.py -------------------------------------------------------------------------------- /examples/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/examples/Taskfile.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/package.json -------------------------------------------------------------------------------- /src/Cache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Cache.cmake -------------------------------------------------------------------------------- /src/Clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Clang.cmake -------------------------------------------------------------------------------- /src/Common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Common.cmake -------------------------------------------------------------------------------- /src/CompilerWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/CompilerWarnings.cmake -------------------------------------------------------------------------------- /src/Conan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Conan.cmake -------------------------------------------------------------------------------- /src/CrossCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/CrossCompiler.cmake -------------------------------------------------------------------------------- /src/Cuda.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Cuda.cmake -------------------------------------------------------------------------------- /src/DetectCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/DetectCompiler.cmake -------------------------------------------------------------------------------- /src/Doxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Doxygen.cmake -------------------------------------------------------------------------------- /src/DynamicProjectOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/DynamicProjectOptions.cmake -------------------------------------------------------------------------------- /src/Git.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Git.cmake -------------------------------------------------------------------------------- /src/Hardening.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Hardening.cmake -------------------------------------------------------------------------------- /src/Index.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Index.cmake -------------------------------------------------------------------------------- /src/Linker.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Linker.cmake -------------------------------------------------------------------------------- /src/MinGW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/MinGW.cmake -------------------------------------------------------------------------------- /src/Optimization.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Optimization.cmake -------------------------------------------------------------------------------- /src/PackageProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/PackageProject.cmake -------------------------------------------------------------------------------- /src/PreventInSourceBuilds.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/PreventInSourceBuilds.cmake -------------------------------------------------------------------------------- /src/Sanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Sanitizers.cmake -------------------------------------------------------------------------------- /src/Standards.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Standards.cmake -------------------------------------------------------------------------------- /src/StaticAnalyzers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/StaticAnalyzers.cmake -------------------------------------------------------------------------------- /src/SystemLink.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/SystemLink.cmake -------------------------------------------------------------------------------- /src/Tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Tests.cmake -------------------------------------------------------------------------------- /src/Utilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Utilities.cmake -------------------------------------------------------------------------------- /src/VCEnvironment.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/VCEnvironment.cmake -------------------------------------------------------------------------------- /src/Vcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/Vcpkg.cmake -------------------------------------------------------------------------------- /src/detect_compiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/detect_compiler/CMakeLists.txt -------------------------------------------------------------------------------- /src/toolchains/aarch64-linux.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/toolchains/aarch64-linux.toolchain.cmake -------------------------------------------------------------------------------- /src/toolchains/arm-linux.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/toolchains/arm-linux.toolchain.cmake -------------------------------------------------------------------------------- /src/toolchains/arm.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/toolchains/arm.toolchain.cmake -------------------------------------------------------------------------------- /src/toolchains/arm64-linux.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/toolchains/arm64-linux.toolchain.cmake -------------------------------------------------------------------------------- /src/toolchains/i686-w64-mingw32.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/toolchains/i686-w64-mingw32.toolchain.cmake -------------------------------------------------------------------------------- /src/toolchains/x86_64-w64-mingw32.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/src/toolchains/x86_64-w64-mingw32.toolchain.cmake -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | !install/ 2 | build/ -------------------------------------------------------------------------------- /tests/emscripten/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /tests/emscripten/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/emscripten/CMakeLists.txt -------------------------------------------------------------------------------- /tests/emscripten/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/emscripten/Taskfile.yml -------------------------------------------------------------------------------- /tests/emscripten/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/emscripten/main.cpp -------------------------------------------------------------------------------- /tests/emscripten/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/emscripten/vcpkg.json -------------------------------------------------------------------------------- /tests/install/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /tests/install/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | install/ -------------------------------------------------------------------------------- /tests/install/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/install/CMakeLists.txt -------------------------------------------------------------------------------- /tests/install/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/install/Taskfile.yml -------------------------------------------------------------------------------- /tests/install/conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/install/conanfile.txt -------------------------------------------------------------------------------- /tests/install/css/my_custom_theme.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightblue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/install/css/my_custom_theme_extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/install/css/my_custom_theme_extra.css -------------------------------------------------------------------------------- /tests/install/src/another_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/install/src/another_main.cpp -------------------------------------------------------------------------------- /tests/install/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/install/vcpkg.json -------------------------------------------------------------------------------- /tests/minimal/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /tests/minimal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/minimal/CMakeLists.txt -------------------------------------------------------------------------------- /tests/minimal/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/minimal/Taskfile.yml -------------------------------------------------------------------------------- /tests/minimal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/minimal/main.cpp -------------------------------------------------------------------------------- /tests/minimal/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/minimal/vcpkg.json -------------------------------------------------------------------------------- /tests/myproj/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /tests/myproj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/CMakeLists.txt -------------------------------------------------------------------------------- /tests/myproj/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/Taskfile.yml -------------------------------------------------------------------------------- /tests/myproj/conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/conanfile.txt -------------------------------------------------------------------------------- /tests/myproj/include/mylib/lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/include/mylib/lib.hpp -------------------------------------------------------------------------------- /tests/myproj/include/mylib2/lib.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int some_fun2(); 4 | -------------------------------------------------------------------------------- /tests/myproj/libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/libs/CMakeLists.txt -------------------------------------------------------------------------------- /tests/myproj/libs/mythirdpartylib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/libs/mythirdpartylib/CMakeLists.txt -------------------------------------------------------------------------------- /tests/myproj/libs/mythirdpartylib/include/Foo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/libs/mythirdpartylib/include/Foo.hpp -------------------------------------------------------------------------------- /tests/myproj/libs/mythirdpartylib/src/Foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/libs/mythirdpartylib/src/Foo.cpp -------------------------------------------------------------------------------- /tests/myproj/src/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/src/main/main.cpp -------------------------------------------------------------------------------- /tests/myproj/src/mylib2/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/src/mylib2/lib.cpp -------------------------------------------------------------------------------- /tests/myproj/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/myproj/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/myproj/vcpkg.json -------------------------------------------------------------------------------- /tests/rpi3/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /tests/rpi3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi3/CMakeLists.txt -------------------------------------------------------------------------------- /tests/rpi3/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi3/Taskfile.yml -------------------------------------------------------------------------------- /tests/rpi3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi3/main.c -------------------------------------------------------------------------------- /tests/rpi3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi3/main.cpp -------------------------------------------------------------------------------- /tests/rpi4-vcpkg/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /tests/rpi4-vcpkg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4-vcpkg/CMakeLists.txt -------------------------------------------------------------------------------- /tests/rpi4-vcpkg/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4-vcpkg/Taskfile.yml -------------------------------------------------------------------------------- /tests/rpi4-vcpkg/cmake/my-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4-vcpkg/cmake/my-toolchain.cmake -------------------------------------------------------------------------------- /tests/rpi4-vcpkg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4-vcpkg/main.cpp -------------------------------------------------------------------------------- /tests/rpi4-vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4-vcpkg/vcpkg.json -------------------------------------------------------------------------------- /tests/rpi4/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /tests/rpi4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4/CMakeLists.txt -------------------------------------------------------------------------------- /tests/rpi4/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4/Taskfile.yml -------------------------------------------------------------------------------- /tests/rpi4/cmake/my-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4/cmake/my-toolchain.cmake -------------------------------------------------------------------------------- /tests/rpi4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminya/project_options/HEAD/tests/rpi4/main.cpp --------------------------------------------------------------------------------