🔧 Generate scripts with cmake

This commit is contained in:
2020-10-19 12:48:06 +00:00
committed by GitHub
parent ce83235137
commit 76a08be0ef
12 changed files with 48 additions and 16 deletions

11
makefile Normal file
View File

@ -0,0 +1,11 @@
CMD := cmake
SCRIPT := -P update.cmake
cmake:
$(CMD) -DTOOL=cmake -DREPO="Kitware/CMake" $(SCRIPT)
conan:
$(CMD) -DTOOL=conan -DREPO="conan-io/conan" $(SCRIPT)
sccache:
$(CMD) -DTOOL=sccache -DREPO="mozilla/sccache" $(SCRIPT)