9 lines
197 B
Bash
Executable file
9 lines
197 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
mkdir build
|
|
cd build
|
|
eval cmake ../src -DLLVM=ON $CMAKE_OPTIONS
|
|
cmake --build .
|
|
# -T to create .xml file
|
|
ctest -j8 --output-on-failure --no-compress-output -T Test
|
|
cpack
|