cuda-samples/Samples/7_libNVVM/utils/build.sh

8 lines
115 B
Bash
Raw Normal View History

2023-06-30 03:33:40 +08:00
#!/bin/sh
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=../install ..
make && make test && make install
cd ..