diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-03-24 14:51:59 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-25 17:16:05 -0400 |
commit | 838c8723e314782c255011536126b95e9d6a97f9 (patch) | |
tree | aaef6390df688a75bd6af1f3b6b1d33c07ab9e30 /.circleci/install_spm.sh | |
parent | ae3eb38592cb40011fd026d3c7c64ebc022bedca (diff) | |
download | spmc-838c8723e314782c255011536126b95e9d6a97f9.tar.gz |
Add .circleci/config.yml
Diffstat (limited to '.circleci/install_spm.sh')
-rwxr-xr-x | .circleci/install_spm.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.circleci/install_spm.sh b/.circleci/install_spm.sh new file mode 100755 index 0000000..4aaea1c --- /dev/null +++ b/.circleci/install_spm.sh @@ -0,0 +1,5 @@ +#!/bin/bash +mkdir build +cd build +cmake3 -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Debug .. +make install |