├── .cmake-format.yaml ├── .gitattributes ├── .gitignore ├── HISTORY.md ├── LICENSE ├── README.md ├── examples ├── README.md ├── core │ ├── README.md │ ├── header-only │ │ ├── application │ │ │ ├── CMakeLists.txt │ │ │ ├── build.bat │ │ │ ├── build.sh │ │ │ ├── configure.bat │ │ │ ├── configure.sh │ │ │ └── main.cpp │ │ └── library │ │ │ ├── CMakeLists.txt │ │ │ ├── configure.bat │ │ │ ├── configure.sh │ │ │ ├── include │ │ │ └── calculator │ │ │ │ └── calculator.h │ │ │ ├── install.bat │ │ │ └── install.sh │ ├── shared-export │ │ ├── application │ │ │ ├── CMakeLists.txt │ │ │ ├── build.bat │ │ │ ├── build.sh │ │ │ ├── configure.bat │ │ │ ├── configure.sh │ │ │ └── main.cpp │ │ └── library │ │ │ ├── CMakeLists.txt │ │ │ ├── configure.bat │ │ │ ├── configure.sh │ │ │ ├── include │ │ │ └── calculator-shared-export │ │ │ │ └── calculator.h │ │ │ ├── install.bat │ │ │ ├── install.sh │ │ │ └── src │ │ │ └── calculator.cpp │ ├── shared │ │ ├── application │ │ │ ├── CMakeLists.txt │ │ │ ├── build.bat │ │ │ ├── build.sh │ │ │ ├── configure.bat │ │ │ ├── configure.sh │ │ │ └── main.cpp │ │ └── library │ │ │ ├── CMakeLists.txt │ │ │ ├── configure.bat │ │ │ ├── configure.sh │ │ │ ├── include │ │ │ └── calculator-shared │ │ │ │ ├── calculator.h │ │ │ │ └── exporting.h │ │ │ ├── install.bat │ │ │ ├── install.sh │ │ │ └── src │ │ │ └── calculator.cpp │ └── static │ │ ├── application │ │ ├── CMakeLists.txt │ │ ├── build.bat │ │ ├── build.sh │ │ ├── configure.bat │ │ ├── configure.sh │ │ └── main.cpp │ │ └── library │ │ ├── CMakeLists.txt │ │ ├── configure.bat │ │ ├── configure.sh │ │ ├── include │ │ └── calculator-static │ │ │ └── calculator.h │ │ ├── install.bat │ │ ├── install.sh │ │ └── src │ │ └── calculator.cpp └── more │ ├── components │ ├── README.md │ ├── application │ │ ├── CMakeLists.txt │ │ ├── build.bat │ │ ├── build.sh │ │ ├── configure.bat │ │ ├── configure.sh │ │ └── main.cpp │ └── library │ │ ├── CMakeLists.txt │ │ ├── build.bat │ │ ├── build.sh │ │ ├── configure.bat │ │ ├── configure.sh │ │ ├── goodbye │ │ ├── goodbye.cpp │ │ └── include │ │ │ └── goodbye.h │ │ ├── hello │ │ ├── hello.cpp │ │ └── include │ │ │ └── hello.h │ │ ├── hey │ │ ├── hey.cpp │ │ └── include │ │ │ └── hey.h │ │ └── phrases-config.cmake.in │ ├── external-project-add │ ├── CMakeLists.txt │ ├── README.md │ ├── build.bat │ ├── build.sh │ ├── configure.bat │ ├── configure.sh │ ├── external │ │ ├── CMakeLists.txt │ │ ├── configure-and-build.bat │ │ └── configure-and-build.sh │ └── main.cpp │ ├── fetch-content │ ├── CMakeLists.txt │ ├── README.md │ ├── build.bat │ ├── build.sh │ ├── configure.bat │ ├── configure.sh │ └── main.cpp │ ├── find-module │ ├── README.md │ ├── application │ │ ├── CMakeLists.txt │ │ ├── build.bat │ │ ├── build.sh │ │ ├── configure.bat │ │ ├── configure.sh │ │ └── main.cpp │ ├── cmake │ │ └── Findcalculator-static.cmake │ └── library │ │ ├── CMakeLists.txt │ │ ├── configure.bat │ │ ├── configure.sh │ │ ├── include │ │ └── calculator-static │ │ │ └── calculator.h │ │ ├── install.bat │ │ ├── install.sh │ │ └── src │ │ └── calculator.cpp │ ├── header-only-defines │ ├── README.md │ ├── application │ │ ├── CMakeLists.txt │ │ ├── build.bat │ │ ├── build.sh │ │ ├── configure.bat │ │ ├── configure.sh │ │ └── main.cpp │ └── library │ │ ├── CMakeLists.txt │ │ ├── configure.bat │ │ ├── configure.sh │ │ ├── include │ │ └── favorite-color │ │ │ └── color.h │ │ ├── install.bat │ │ └── install.sh │ ├── nested-dependencies │ ├── README.md │ ├── application │ │ ├── CMakeLists.txt │ │ ├── configure-build.bat │ │ ├── configure-build.sh │ │ └── main.cpp │ └── library │ │ ├── lib-a │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── lib-a │ │ │ └── lib-a.h │ │ └── lib-b │ │ ├── CMakeLists.txt │ │ ├── configure-build-install.bat │ │ ├── configure-build-install.sh │ │ ├── include │ │ └── lib-b │ │ │ └── lib-b.h │ │ ├── lib-b-config.cmake.in │ │ └── src │ │ └── lib-b.cpp │ ├── static-auto-install │ ├── README.md │ └── application │ │ ├── CMakeLists.txt │ │ ├── autoinstall.cmake │ │ └── main.cpp │ ├── static-versioned │ ├── README.md │ ├── application-1.0.0 │ │ ├── CMakeLists.txt │ │ ├── build.bat │ │ ├── build.sh │ │ ├── configure.bat │ │ ├── configure.sh │ │ └── main.cpp │ ├── application-2.0.0 │ │ ├── CMakeLists.txt │ │ ├── build.bat │ │ ├── build.sh │ │ ├── configure.bat │ │ ├── configure.sh │ │ └── main.cpp │ ├── library-1.0.0 │ │ ├── CMakeLists.txt │ │ ├── configure.bat │ │ ├── configure.sh │ │ ├── include │ │ │ └── useless │ │ │ │ ├── calculator.h │ │ │ │ └── writer.h │ │ ├── install.bat │ │ ├── install.sh │ │ └── src │ │ │ ├── calculator.cpp │ │ │ └── writer.cpp │ └── library-2.0.0 │ │ ├── CMakeLists.txt │ │ ├── configure.bat │ │ ├── configure.sh │ │ ├── include │ │ └── useless │ │ │ ├── calculator.h │ │ │ └── writer.h │ │ ├── install.bat │ │ ├── install.sh │ │ └── src │ │ ├── calculator.cpp │ │ └── writer.cpp │ └── superbuild │ ├── .clang-format │ ├── CMakeLists.txt │ ├── README.md │ ├── build.bat │ ├── build.sh │ ├── configure.bat │ ├── configure.sh │ ├── external │ ├── CMakeLists.txt │ ├── optional-configure-and-build.bat │ └── optional-configure-and-build.sh │ ├── main.cpp │ └── superbuild.cmake ├── installing └── README.md ├── run-cmake-format.bat └── utils └── autoinstall.cmake /.cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/.cmake-format.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-documentation=false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | install/ 3 | .vscode/ -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/README.md -------------------------------------------------------------------------------- /examples/core/header-only/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/core/header-only/application/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/application/build.bat -------------------------------------------------------------------------------- /examples/core/header-only/application/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/application/build.sh -------------------------------------------------------------------------------- /examples/core/header-only/application/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/application/configure.bat -------------------------------------------------------------------------------- /examples/core/header-only/application/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/application/configure.sh -------------------------------------------------------------------------------- /examples/core/header-only/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/application/main.cpp -------------------------------------------------------------------------------- /examples/core/header-only/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/core/header-only/library/configure.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | cmake -B build -G Ninja -DCMAKE_INSTALL_PREFIX=install 4 | -------------------------------------------------------------------------------- /examples/core/header-only/library/configure.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cmake -B build -G Ninja -DCMAKE_INSTALL_PREFIX=install 4 | -------------------------------------------------------------------------------- /examples/core/header-only/library/include/calculator/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/library/include/calculator/calculator.h -------------------------------------------------------------------------------- /examples/core/header-only/library/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/library/install.bat -------------------------------------------------------------------------------- /examples/core/header-only/library/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/header-only/library/install.sh -------------------------------------------------------------------------------- /examples/core/shared-export/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/core/shared-export/application/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/application/build.bat -------------------------------------------------------------------------------- /examples/core/shared-export/application/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/application/build.sh -------------------------------------------------------------------------------- /examples/core/shared-export/application/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/application/configure.bat -------------------------------------------------------------------------------- /examples/core/shared-export/application/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/application/configure.sh -------------------------------------------------------------------------------- /examples/core/shared-export/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/application/main.cpp -------------------------------------------------------------------------------- /examples/core/shared-export/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/core/shared-export/library/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/library/configure.bat -------------------------------------------------------------------------------- /examples/core/shared-export/library/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/library/configure.sh -------------------------------------------------------------------------------- /examples/core/shared-export/library/include/calculator-shared-export/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/library/include/calculator-shared-export/calculator.h -------------------------------------------------------------------------------- /examples/core/shared-export/library/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/library/install.bat -------------------------------------------------------------------------------- /examples/core/shared-export/library/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/library/install.sh -------------------------------------------------------------------------------- /examples/core/shared-export/library/src/calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared-export/library/src/calculator.cpp -------------------------------------------------------------------------------- /examples/core/shared/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/core/shared/application/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/application/build.bat -------------------------------------------------------------------------------- /examples/core/shared/application/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/application/build.sh -------------------------------------------------------------------------------- /examples/core/shared/application/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/application/configure.bat -------------------------------------------------------------------------------- /examples/core/shared/application/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/application/configure.sh -------------------------------------------------------------------------------- /examples/core/shared/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/application/main.cpp -------------------------------------------------------------------------------- /examples/core/shared/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/core/shared/library/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/library/configure.bat -------------------------------------------------------------------------------- /examples/core/shared/library/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/library/configure.sh -------------------------------------------------------------------------------- /examples/core/shared/library/include/calculator-shared/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/library/include/calculator-shared/calculator.h -------------------------------------------------------------------------------- /examples/core/shared/library/include/calculator-shared/exporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/library/include/calculator-shared/exporting.h -------------------------------------------------------------------------------- /examples/core/shared/library/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/library/install.bat -------------------------------------------------------------------------------- /examples/core/shared/library/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/library/install.sh -------------------------------------------------------------------------------- /examples/core/shared/library/src/calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/shared/library/src/calculator.cpp -------------------------------------------------------------------------------- /examples/core/static/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/core/static/application/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/application/build.bat -------------------------------------------------------------------------------- /examples/core/static/application/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/application/build.sh -------------------------------------------------------------------------------- /examples/core/static/application/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/application/configure.bat -------------------------------------------------------------------------------- /examples/core/static/application/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/application/configure.sh -------------------------------------------------------------------------------- /examples/core/static/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/application/main.cpp -------------------------------------------------------------------------------- /examples/core/static/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/core/static/library/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/library/configure.bat -------------------------------------------------------------------------------- /examples/core/static/library/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/library/configure.sh -------------------------------------------------------------------------------- /examples/core/static/library/include/calculator-static/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/library/include/calculator-static/calculator.h -------------------------------------------------------------------------------- /examples/core/static/library/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/library/install.bat -------------------------------------------------------------------------------- /examples/core/static/library/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/library/install.sh -------------------------------------------------------------------------------- /examples/core/static/library/src/calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/core/static/library/src/calculator.cpp -------------------------------------------------------------------------------- /examples/more/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/README.md -------------------------------------------------------------------------------- /examples/more/components/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/components/application/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/application/build.bat -------------------------------------------------------------------------------- /examples/more/components/application/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/application/build.sh -------------------------------------------------------------------------------- /examples/more/components/application/configure.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | cmake -B build -DCMAKE_PREFIX_PATH=%cd%/../library/install 4 | -------------------------------------------------------------------------------- /examples/more/components/application/configure.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cmake -B build -DCMAKE_PREFIX_PATH=$(pwd)/../library/install 4 | -------------------------------------------------------------------------------- /examples/more/components/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/application/main.cpp -------------------------------------------------------------------------------- /examples/more/components/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/components/library/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/library/build.bat -------------------------------------------------------------------------------- /examples/more/components/library/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/library/build.sh -------------------------------------------------------------------------------- /examples/more/components/library/configure.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | cmake -B build -DCMAKE_INSTALL_PREFIX=install 4 | -------------------------------------------------------------------------------- /examples/more/components/library/configure.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cmake -B build -DCMAKE_INSTALL_PREFIX=install 4 | -------------------------------------------------------------------------------- /examples/more/components/library/goodbye/goodbye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/library/goodbye/goodbye.cpp -------------------------------------------------------------------------------- /examples/more/components/library/goodbye/include/goodbye.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | const char* goodbye_message(); 4 | -------------------------------------------------------------------------------- /examples/more/components/library/hello/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/library/hello/hello.cpp -------------------------------------------------------------------------------- /examples/more/components/library/hello/include/hello.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | const char* hello_message(); 4 | -------------------------------------------------------------------------------- /examples/more/components/library/hey/hey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/library/hey/hey.cpp -------------------------------------------------------------------------------- /examples/more/components/library/hey/include/hey.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | const char* hey_message(); 4 | -------------------------------------------------------------------------------- /examples/more/components/library/phrases-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/components/library/phrases-config.cmake.in -------------------------------------------------------------------------------- /examples/more/external-project-add/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/external-project-add/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/README.md -------------------------------------------------------------------------------- /examples/more/external-project-add/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/build.bat -------------------------------------------------------------------------------- /examples/more/external-project-add/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/build.sh -------------------------------------------------------------------------------- /examples/more/external-project-add/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/configure.bat -------------------------------------------------------------------------------- /examples/more/external-project-add/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/configure.sh -------------------------------------------------------------------------------- /examples/more/external-project-add/external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/external/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/external-project-add/external/configure-and-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/external/configure-and-build.bat -------------------------------------------------------------------------------- /examples/more/external-project-add/external/configure-and-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/external/configure-and-build.sh -------------------------------------------------------------------------------- /examples/more/external-project-add/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/external-project-add/main.cpp -------------------------------------------------------------------------------- /examples/more/fetch-content/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/fetch-content/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/fetch-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/fetch-content/README.md -------------------------------------------------------------------------------- /examples/more/fetch-content/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/fetch-content/build.bat -------------------------------------------------------------------------------- /examples/more/fetch-content/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/fetch-content/build.sh -------------------------------------------------------------------------------- /examples/more/fetch-content/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/fetch-content/configure.bat -------------------------------------------------------------------------------- /examples/more/fetch-content/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/fetch-content/configure.sh -------------------------------------------------------------------------------- /examples/more/fetch-content/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/fetch-content/main.cpp -------------------------------------------------------------------------------- /examples/more/find-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/README.md -------------------------------------------------------------------------------- /examples/more/find-module/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/find-module/application/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/application/build.bat -------------------------------------------------------------------------------- /examples/more/find-module/application/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/application/build.sh -------------------------------------------------------------------------------- /examples/more/find-module/application/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/application/configure.bat -------------------------------------------------------------------------------- /examples/more/find-module/application/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/application/configure.sh -------------------------------------------------------------------------------- /examples/more/find-module/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/application/main.cpp -------------------------------------------------------------------------------- /examples/more/find-module/cmake/Findcalculator-static.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/cmake/Findcalculator-static.cmake -------------------------------------------------------------------------------- /examples/more/find-module/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/find-module/library/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/library/configure.bat -------------------------------------------------------------------------------- /examples/more/find-module/library/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/library/configure.sh -------------------------------------------------------------------------------- /examples/more/find-module/library/include/calculator-static/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/library/include/calculator-static/calculator.h -------------------------------------------------------------------------------- /examples/more/find-module/library/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/library/install.bat -------------------------------------------------------------------------------- /examples/more/find-module/library/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/library/install.sh -------------------------------------------------------------------------------- /examples/more/find-module/library/src/calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/find-module/library/src/calculator.cpp -------------------------------------------------------------------------------- /examples/more/header-only-defines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/README.md -------------------------------------------------------------------------------- /examples/more/header-only-defines/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/header-only-defines/application/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/application/build.bat -------------------------------------------------------------------------------- /examples/more/header-only-defines/application/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/application/build.sh -------------------------------------------------------------------------------- /examples/more/header-only-defines/application/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/application/configure.bat -------------------------------------------------------------------------------- /examples/more/header-only-defines/application/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/application/configure.sh -------------------------------------------------------------------------------- /examples/more/header-only-defines/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/application/main.cpp -------------------------------------------------------------------------------- /examples/more/header-only-defines/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/header-only-defines/library/configure.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | cmake -B build -G Ninja -DCMAKE_INSTALL_PREFIX=install 4 | -------------------------------------------------------------------------------- /examples/more/header-only-defines/library/configure.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cmake -B build -G Ninja -DCMAKE_INSTALL_PREFIX=install 4 | -------------------------------------------------------------------------------- /examples/more/header-only-defines/library/include/favorite-color/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/library/include/favorite-color/color.h -------------------------------------------------------------------------------- /examples/more/header-only-defines/library/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/library/install.bat -------------------------------------------------------------------------------- /examples/more/header-only-defines/library/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/header-only-defines/library/install.sh -------------------------------------------------------------------------------- /examples/more/nested-dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/README.md -------------------------------------------------------------------------------- /examples/more/nested-dependencies/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/nested-dependencies/application/configure-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/application/configure-build.bat -------------------------------------------------------------------------------- /examples/more/nested-dependencies/application/configure-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/application/configure-build.sh -------------------------------------------------------------------------------- /examples/more/nested-dependencies/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/application/main.cpp -------------------------------------------------------------------------------- /examples/more/nested-dependencies/library/lib-a/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/library/lib-a/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/nested-dependencies/library/lib-a/include/lib-a/lib-a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/library/lib-a/include/lib-a/lib-a.h -------------------------------------------------------------------------------- /examples/more/nested-dependencies/library/lib-b/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/library/lib-b/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/nested-dependencies/library/lib-b/configure-build-install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/library/lib-b/configure-build-install.bat -------------------------------------------------------------------------------- /examples/more/nested-dependencies/library/lib-b/configure-build-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/library/lib-b/configure-build-install.sh -------------------------------------------------------------------------------- /examples/more/nested-dependencies/library/lib-b/include/lib-b/lib-b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/library/lib-b/include/lib-b/lib-b.h -------------------------------------------------------------------------------- /examples/more/nested-dependencies/library/lib-b/lib-b-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/library/lib-b/lib-b-config.cmake.in -------------------------------------------------------------------------------- /examples/more/nested-dependencies/library/lib-b/src/lib-b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/nested-dependencies/library/lib-b/src/lib-b.cpp -------------------------------------------------------------------------------- /examples/more/static-auto-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-auto-install/README.md -------------------------------------------------------------------------------- /examples/more/static-auto-install/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-auto-install/application/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/static-auto-install/application/autoinstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-auto-install/application/autoinstall.cmake -------------------------------------------------------------------------------- /examples/more/static-auto-install/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-auto-install/application/main.cpp -------------------------------------------------------------------------------- /examples/more/static-versioned/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/README.md -------------------------------------------------------------------------------- /examples/more/static-versioned/application-1.0.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-1.0.0/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/static-versioned/application-1.0.0/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-1.0.0/build.bat -------------------------------------------------------------------------------- /examples/more/static-versioned/application-1.0.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-1.0.0/build.sh -------------------------------------------------------------------------------- /examples/more/static-versioned/application-1.0.0/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-1.0.0/configure.bat -------------------------------------------------------------------------------- /examples/more/static-versioned/application-1.0.0/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-1.0.0/configure.sh -------------------------------------------------------------------------------- /examples/more/static-versioned/application-1.0.0/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-1.0.0/main.cpp -------------------------------------------------------------------------------- /examples/more/static-versioned/application-2.0.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-2.0.0/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/static-versioned/application-2.0.0/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-2.0.0/build.bat -------------------------------------------------------------------------------- /examples/more/static-versioned/application-2.0.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-2.0.0/build.sh -------------------------------------------------------------------------------- /examples/more/static-versioned/application-2.0.0/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-2.0.0/configure.bat -------------------------------------------------------------------------------- /examples/more/static-versioned/application-2.0.0/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-2.0.0/configure.sh -------------------------------------------------------------------------------- /examples/more/static-versioned/application-2.0.0/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/application-2.0.0/main.cpp -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/configure.bat -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/configure.sh -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/include/useless/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/include/useless/calculator.h -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/include/useless/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/include/useless/writer.h -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/install.bat -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/install.sh -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/src/calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/src/calculator.cpp -------------------------------------------------------------------------------- /examples/more/static-versioned/library-1.0.0/src/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-1.0.0/src/writer.cpp -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/configure.bat -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/configure.sh -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/include/useless/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/include/useless/calculator.h -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/include/useless/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/include/useless/writer.h -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/install.bat -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/install.sh -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/src/calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/src/calculator.cpp -------------------------------------------------------------------------------- /examples/more/static-versioned/library-2.0.0/src/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/static-versioned/library-2.0.0/src/writer.cpp -------------------------------------------------------------------------------- /examples/more/superbuild/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/.clang-format -------------------------------------------------------------------------------- /examples/more/superbuild/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/superbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/README.md -------------------------------------------------------------------------------- /examples/more/superbuild/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/build.bat -------------------------------------------------------------------------------- /examples/more/superbuild/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/build.sh -------------------------------------------------------------------------------- /examples/more/superbuild/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/configure.bat -------------------------------------------------------------------------------- /examples/more/superbuild/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/configure.sh -------------------------------------------------------------------------------- /examples/more/superbuild/external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/external/CMakeLists.txt -------------------------------------------------------------------------------- /examples/more/superbuild/external/optional-configure-and-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/external/optional-configure-and-build.bat -------------------------------------------------------------------------------- /examples/more/superbuild/external/optional-configure-and-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/external/optional-configure-and-build.sh -------------------------------------------------------------------------------- /examples/more/superbuild/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/main.cpp -------------------------------------------------------------------------------- /examples/more/superbuild/superbuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/examples/more/superbuild/superbuild.cmake -------------------------------------------------------------------------------- /installing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/installing/README.md -------------------------------------------------------------------------------- /run-cmake-format.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/run-cmake-format.bat -------------------------------------------------------------------------------- /utils/autoinstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pr0g/cmake-examples/HEAD/utils/autoinstall.cmake --------------------------------------------------------------------------------