├── .clang-format ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── lint.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake.toml ├── cmake ├── bump_version.cmake ├── cmkr.cmake ├── custom_targets.cmake ├── example.md.in ├── generate_documentation.cmake ├── generate_resources.cmake ├── replace_tag.cmake ├── resource.hpp.in └── version.hpp.in ├── docs ├── .gitignore ├── 404.html ├── CNAME ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── basics.md ├── cmake-toml.md ├── examples │ ├── basic.md │ ├── compile-options.md │ ├── cxx-standard.md │ ├── fetch-content.md │ ├── globbing.md │ ├── index.md │ ├── interface.md │ ├── msvc-runtime.md │ ├── templates.md │ └── vcpkg.md ├── favicon.ico ├── getting-started.html ├── google13f7c659b54c069f.html ├── hammer-svgrepo-com.png ├── hammer-svgrepo-com.svg ├── index.md ├── philosophy.md └── serve.sh ├── include ├── arguments.hpp ├── build.hpp ├── cmake_generator.hpp ├── fs.hpp ├── help.hpp ├── literals.hpp └── project_parser.hpp ├── src ├── arguments.cpp ├── build.cpp ├── cmake_generator.cpp ├── help.cpp ├── main.cpp └── project_parser.cpp ├── tests ├── .gitignore ├── CMakeLists.txt ├── basic │ ├── cmake.toml │ └── src │ │ └── basic.cpp ├── cmake.toml ├── compile-options │ ├── cmake.toml │ └── src │ │ └── main.cpp ├── conditions │ ├── cmake.toml │ └── src │ │ ├── main.cpp │ │ └── windows_specific.cpp ├── cxx-standard │ ├── cmake.toml │ └── src │ │ └── main.cpp ├── fetch-content │ ├── cmake.toml │ └── src │ │ └── main.cpp ├── globbing │ ├── cmake.toml │ ├── example │ │ └── src │ │ │ └── main.cpp │ └── mylib │ │ ├── include │ │ └── mylib │ │ │ └── mylib.hpp │ │ └── src │ │ └── mylib │ │ └── mylib.cpp ├── interface │ ├── cmake.toml │ ├── include │ │ └── mylib │ │ │ └── mylib.hpp │ └── src │ │ └── main.cpp ├── msvc-runtime │ ├── cmake.toml │ └── src │ │ └── main.cpp ├── relative-paths │ ├── cmake.toml │ ├── libs │ │ └── test-library-x64-Release.lib │ └── src │ │ ├── library-code.cpp │ │ └── main.cpp ├── templates │ ├── cmake.toml │ └── src │ │ └── templates.cpp └── vcpkg │ ├── cmake.toml │ └── src │ └── main.cpp └── third_party ├── .clang-format ├── CMakeLists.txt ├── filesystem-1.5.2 ├── LICENSE └── include │ └── ghc │ ├── filesystem.hpp │ ├── fs_fwd.hpp │ ├── fs_impl.hpp │ ├── fs_std.hpp │ ├── fs_std_fwd.hpp │ └── fs_std_impl.hpp ├── ordered-map-1.0.0 ├── LICENSE └── include │ └── tsl │ ├── ordered_hash.h │ ├── ordered_map.h │ └── ordered_set.h ├── toml11-3.6.0 ├── LICENSE ├── toml.hpp └── toml │ ├── color.hpp │ ├── combinator.hpp │ ├── comments.hpp │ ├── datetime.hpp │ ├── exception.hpp │ ├── from.hpp │ ├── get.hpp │ ├── into.hpp │ ├── lexer.hpp │ ├── literal.hpp │ ├── parser.hpp │ ├── region.hpp │ ├── result.hpp │ ├── serializer.hpp │ ├── source_location.hpp │ ├── storage.hpp │ ├── string.hpp │ ├── traits.hpp │ ├── types.hpp │ ├── utility.hpp │ └── value.hpp └── variant-1.4.0 ├── LICENSE.md └── include └── mpark ├── config.hpp ├── in_place.hpp ├── lib.hpp └── variant.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | CMakeLists.txt linguist-generated -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [mrexodia] 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/README.md -------------------------------------------------------------------------------- /cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake.toml -------------------------------------------------------------------------------- /cmake/bump_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/bump_version.cmake -------------------------------------------------------------------------------- /cmake/cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/cmkr.cmake -------------------------------------------------------------------------------- /cmake/custom_targets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/custom_targets.cmake -------------------------------------------------------------------------------- /cmake/example.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/example.md.in -------------------------------------------------------------------------------- /cmake/generate_documentation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/generate_documentation.cmake -------------------------------------------------------------------------------- /cmake/generate_resources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/generate_resources.cmake -------------------------------------------------------------------------------- /cmake/replace_tag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/replace_tag.cmake -------------------------------------------------------------------------------- /cmake/resource.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/resource.hpp.in -------------------------------------------------------------------------------- /cmake/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/cmake/version.hpp.in -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .jekyll-metadata 3 | assets/ 4 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | cmkr.build 2 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/basics.md -------------------------------------------------------------------------------- /docs/cmake-toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/cmake-toml.md -------------------------------------------------------------------------------- /docs/examples/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/basic.md -------------------------------------------------------------------------------- /docs/examples/compile-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/compile-options.md -------------------------------------------------------------------------------- /docs/examples/cxx-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/cxx-standard.md -------------------------------------------------------------------------------- /docs/examples/fetch-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/fetch-content.md -------------------------------------------------------------------------------- /docs/examples/globbing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/globbing.md -------------------------------------------------------------------------------- /docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/index.md -------------------------------------------------------------------------------- /docs/examples/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/interface.md -------------------------------------------------------------------------------- /docs/examples/msvc-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/msvc-runtime.md -------------------------------------------------------------------------------- /docs/examples/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/templates.md -------------------------------------------------------------------------------- /docs/examples/vcpkg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/examples/vcpkg.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/getting-started.html -------------------------------------------------------------------------------- /docs/google13f7c659b54c069f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/google13f7c659b54c069f.html -------------------------------------------------------------------------------- /docs/hammer-svgrepo-com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/hammer-svgrepo-com.png -------------------------------------------------------------------------------- /docs/hammer-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/hammer-svgrepo-com.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/philosophy.md -------------------------------------------------------------------------------- /docs/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/docs/serve.sh -------------------------------------------------------------------------------- /include/arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/include/arguments.hpp -------------------------------------------------------------------------------- /include/build.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/include/build.hpp -------------------------------------------------------------------------------- /include/cmake_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/include/cmake_generator.hpp -------------------------------------------------------------------------------- /include/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/include/fs.hpp -------------------------------------------------------------------------------- /include/help.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/include/help.hpp -------------------------------------------------------------------------------- /include/literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/include/literals.hpp -------------------------------------------------------------------------------- /include/project_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/include/project_parser.hpp -------------------------------------------------------------------------------- /src/arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/src/arguments.cpp -------------------------------------------------------------------------------- /src/build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/src/build.cpp -------------------------------------------------------------------------------- /src/cmake_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/src/cmake_generator.cpp -------------------------------------------------------------------------------- /src/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/src/help.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/project_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/src/project_parser.cpp -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/basic/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/basic/cmake.toml -------------------------------------------------------------------------------- /tests/basic/src/basic.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | puts("Hello from cmkr!"); 5 | } 6 | -------------------------------------------------------------------------------- /tests/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/cmake.toml -------------------------------------------------------------------------------- /tests/compile-options/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/compile-options/cmake.toml -------------------------------------------------------------------------------- /tests/compile-options/src/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | puts("Hello from cmkr!"); 5 | } 6 | -------------------------------------------------------------------------------- /tests/conditions/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/conditions/cmake.toml -------------------------------------------------------------------------------- /tests/conditions/src/main.cpp: -------------------------------------------------------------------------------- 1 | int main() { 2 | } 3 | -------------------------------------------------------------------------------- /tests/conditions/src/windows_specific.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void foo() { 4 | } 5 | -------------------------------------------------------------------------------- /tests/cxx-standard/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/cxx-standard/cmake.toml -------------------------------------------------------------------------------- /tests/cxx-standard/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/cxx-standard/src/main.cpp -------------------------------------------------------------------------------- /tests/fetch-content/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/fetch-content/cmake.toml -------------------------------------------------------------------------------- /tests/fetch-content/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/fetch-content/src/main.cpp -------------------------------------------------------------------------------- /tests/globbing/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/globbing/cmake.toml -------------------------------------------------------------------------------- /tests/globbing/example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/globbing/example/src/main.cpp -------------------------------------------------------------------------------- /tests/globbing/mylib/include/mylib/mylib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/globbing/mylib/include/mylib/mylib.hpp -------------------------------------------------------------------------------- /tests/globbing/mylib/src/mylib/mylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/globbing/mylib/src/mylib/mylib.cpp -------------------------------------------------------------------------------- /tests/interface/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/interface/cmake.toml -------------------------------------------------------------------------------- /tests/interface/include/mylib/mylib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/interface/include/mylib/mylib.hpp -------------------------------------------------------------------------------- /tests/interface/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/interface/src/main.cpp -------------------------------------------------------------------------------- /tests/msvc-runtime/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/msvc-runtime/cmake.toml -------------------------------------------------------------------------------- /tests/msvc-runtime/src/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | puts("Hello from cmkr(msvc-static)!"); 5 | } 6 | -------------------------------------------------------------------------------- /tests/relative-paths/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/relative-paths/cmake.toml -------------------------------------------------------------------------------- /tests/relative-paths/libs/test-library-x64-Release.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/relative-paths/libs/test-library-x64-Release.lib -------------------------------------------------------------------------------- /tests/relative-paths/src/library-code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/relative-paths/src/library-code.cpp -------------------------------------------------------------------------------- /tests/relative-paths/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/relative-paths/src/main.cpp -------------------------------------------------------------------------------- /tests/templates/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/templates/cmake.toml -------------------------------------------------------------------------------- /tests/templates/src/templates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/templates/src/templates.cpp -------------------------------------------------------------------------------- /tests/vcpkg/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/vcpkg/cmake.toml -------------------------------------------------------------------------------- /tests/vcpkg/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/tests/vcpkg/src/main.cpp -------------------------------------------------------------------------------- /third_party/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/.clang-format -------------------------------------------------------------------------------- /third_party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/filesystem-1.5.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/filesystem-1.5.2/LICENSE -------------------------------------------------------------------------------- /third_party/filesystem-1.5.2/include/ghc/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/filesystem-1.5.2/include/ghc/filesystem.hpp -------------------------------------------------------------------------------- /third_party/filesystem-1.5.2/include/ghc/fs_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/filesystem-1.5.2/include/ghc/fs_fwd.hpp -------------------------------------------------------------------------------- /third_party/filesystem-1.5.2/include/ghc/fs_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/filesystem-1.5.2/include/ghc/fs_impl.hpp -------------------------------------------------------------------------------- /third_party/filesystem-1.5.2/include/ghc/fs_std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/filesystem-1.5.2/include/ghc/fs_std.hpp -------------------------------------------------------------------------------- /third_party/filesystem-1.5.2/include/ghc/fs_std_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/filesystem-1.5.2/include/ghc/fs_std_fwd.hpp -------------------------------------------------------------------------------- /third_party/filesystem-1.5.2/include/ghc/fs_std_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/filesystem-1.5.2/include/ghc/fs_std_impl.hpp -------------------------------------------------------------------------------- /third_party/ordered-map-1.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/ordered-map-1.0.0/LICENSE -------------------------------------------------------------------------------- /third_party/ordered-map-1.0.0/include/tsl/ordered_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/ordered-map-1.0.0/include/tsl/ordered_hash.h -------------------------------------------------------------------------------- /third_party/ordered-map-1.0.0/include/tsl/ordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/ordered-map-1.0.0/include/tsl/ordered_map.h -------------------------------------------------------------------------------- /third_party/ordered-map-1.0.0/include/tsl/ordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/ordered-map-1.0.0/include/tsl/ordered_set.h -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/LICENSE -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/color.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/combinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/combinator.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/comments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/comments.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/datetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/datetime.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/exception.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/from.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/from.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/get.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/get.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/into.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/into.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/lexer.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/literal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/literal.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/parser.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/region.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/result.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/serializer.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/source_location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/source_location.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/storage.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/string.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/traits.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/types.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/utility.hpp -------------------------------------------------------------------------------- /third_party/toml11-3.6.0/toml/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/toml11-3.6.0/toml/value.hpp -------------------------------------------------------------------------------- /third_party/variant-1.4.0/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/variant-1.4.0/LICENSE.md -------------------------------------------------------------------------------- /third_party/variant-1.4.0/include/mpark/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/variant-1.4.0/include/mpark/config.hpp -------------------------------------------------------------------------------- /third_party/variant-1.4.0/include/mpark/in_place.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/variant-1.4.0/include/mpark/in_place.hpp -------------------------------------------------------------------------------- /third_party/variant-1.4.0/include/mpark/lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/variant-1.4.0/include/mpark/lib.hpp -------------------------------------------------------------------------------- /third_party/variant-1.4.0/include/mpark/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-cpp/cmkr/HEAD/third_party/variant-1.4.0/include/mpark/variant.hpp --------------------------------------------------------------------------------