mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
12 lines
172 B
Bash
Executable File
12 lines
172 B
Bash
Executable File
#!/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
|