├── .github ├── FUNDING.yml └── workflows │ └── all.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmake_downloader.py ├── cmake_min_version.py ├── pyproject.toml ├── requirements-dev.txt └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/.github/workflows/all.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /tools/ 2 | /venv/ 3 | /.idea/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/README.md -------------------------------------------------------------------------------- /cmake_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/cmake_downloader.py -------------------------------------------------------------------------------- /cmake_min_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/cmake_min_version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/cmake_min_version/HEAD/requirements.txt --------------------------------------------------------------------------------