mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2024-11-28 16:39:15 +08:00
8 lines
115 B
Bash
8 lines
115 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=../install ..
|
||
|
make && make test && make install
|
||
|
cd ..
|