commit 642389d850cdc434b0b3be1ab29448cd1bb68200 Author: Zed A. Shaw Date: Wed Jul 10 05:22:52 2024 -0400 First cut of an simple install system that can support many languages for people starting out on Windows. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7999676 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +.*.sw* +.DS_Store +*.sqlite3 +*.sqlite3-wal +*.sqlite3-shm +debug +coverage/ +.coverage +builddir +subprojects diff --git a/base.ps1 b/base.ps1 new file mode 100644 index 0000000..610da23 Binary files /dev/null and b/base.ps1 differ diff --git a/cpp.ps1 b/cpp.ps1 new file mode 100644 index 0000000..a01310a Binary files /dev/null and b/cpp.ps1 differ diff --git a/python.ps1 b/python.ps1 new file mode 100644 index 0000000..8897018 Binary files /dev/null and b/python.ps1 differ