mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2024-11-24 20:49:15 +08:00
7 lines
109 B
Bash
7 lines
109 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=../install ..
|
||
|
make && make test && make install
|