Files
simple64/parallel-rsp/build_native.sh
T

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 ..