summaryrefslogtreecommitdiffstats
path: root/GUI/Libraries
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-07-23 22:53:08 -0700
committeryum <yum.food.vr@gmail.com>2025-07-23 22:53:08 -0700
commit4539f87e36cb3ca554e1e174c19206b552107c57 (patch)
tree6f9aca818989773cc10f3c465224a07f847eb279 /GUI/Libraries
parentf6b93a20d754579008076e85f5c0a97e1bcbc258 (diff)
Delete unused filesv1.0.0-beta00
Diffstat (limited to 'GUI/Libraries')
-rw-r--r--GUI/Libraries/.gitignore5
-rw-r--r--GUI/Libraries/fetch.ps131
2 files changed, 0 insertions, 36 deletions
diff --git a/GUI/Libraries/.gitignore b/GUI/Libraries/.gitignore
deleted file mode 100644
index 26be5d9..0000000
--- a/GUI/Libraries/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-# Don't check in anything we fetch
-wx
-rapidyaml
-whisper
-oatpp
diff --git a/GUI/Libraries/fetch.ps1 b/GUI/Libraries/fetch.ps1
deleted file mode 100644
index f558d3f..0000000
--- a/GUI/Libraries/fetch.ps1
+++ /dev/null
@@ -1,31 +0,0 @@
-param(
- [switch]$overwrite = $False,
- [string]$release = "Release"
-)
-
-echo "Overwrite: $overwrite"
-echo "Release: $release"
-
-Set-PSDebug -trace 0
-
-$WX_3_2_1_URL = "https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxWidgets-3.2.1.zip"
-$WX_URL = $WX_3_2_1_URL
-$WX_FILE = $(Split-Path -Path $WX_URL -Leaf)
-
-pushd $PSScriptRoot
-
-# WX
-if ((Test-Path wx) -And ($overwrite)) {
- rm -Recurse wx
-}
-
-if (-Not (Test-Path wx)) {
- mkdir wx
- pushd wx > $null
- Invoke-WebRequest $WX_URL -OutFile $WX_FILE
- Expand-Archive $WX_FILE -DestinationPath .
- popd > $null
-}
-
-popd > $null # $PSScriptRoot
-