mirror of https://github.com/m-labs/artiq.git
8 lines
123 B
Bash
8 lines
123 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake .. -DCMAKE_INSTALL_PREFIX=$PREFIX -DOPENSSL_ROOT_DIR=$PREFIX
|
||
|
make -j2
|
||
|
make install
|