mirror of
https://github.com/Vita3K/Vita3K-Android.git
synced 2024-12-12 15:45:38 +00:00
b807ddc78e
- Updates GitHub workflows to use the CMake toolchain files - Updates building.md to reflect the new build method - Updates old build scripts to just use the CMake project generation command
6 lines
156 B
Bash
Executable File
6 lines
156 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
# Generate project files for Ninja
|
|
cmake -S . -B build-linux -G Ninja -DCMAKE_TOOLCHAIN_FILE=./cmake/toolchain/linux-x64.cmake
|