cuda-samples/Samples/7_libNVVM/utils/build.sh
2023-06-29 19:33:40 +00:00

8 lines
115 B
Bash
Executable File

#!/bin/sh
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=../install ..
make && make test && make install
cd ..