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