mirror of
https://github.com/simple64/simple64.git
synced 2026-07-11 01:24:00 +02:00
8 lines
149 B
Bash
Executable File
8 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p build-native
|
|
cd build-native
|
|
cmake .. -DCMAKE_BUILD_TYPE=Release -DPARALLEL_RSP_DEBUG_JIT=OFF
|
|
cmake --build . --parallel
|
|
cd ..
|