Add native Wine accessibility bridge

This commit is contained in:
Storm Dragon
2026-07-17 18:17:23 -04:00
parent 0576b6f79f
commit c9f56cb7ed
24 changed files with 1188 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
sourceDir=$1
buildDir=$2
launcherOutput=$3
binaryOutput=$4
cmake \
-S "$sourceDir" \
-B "$buildDir" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_TOOLCHAIN_FILE="$sourceDir/winelib-toolchain.cmake"
cmake --build "$buildDir" --parallel
cmake -E copy "$buildDir/cthulhu-wine-access.exe" "$launcherOutput"
cmake -E copy "$buildDir/cthulhu-wine-access.exe.so" "$binaryOutput"