mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2025-02-09 14:10:54 +08:00
12 lines
172 B
Bash
12 lines
172 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
# Exit on error
|
||
|
set -e
|
||
|
# Echo each command
|
||
|
set -x
|
||
|
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX ..
|
||
|
cmake --build . --target install
|