File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 22
33set -ex
44
5- git clone https://github.com/ampas/aces_container.git aces_container
5+ git clone https://github.com/ampas/aces_container.git ../ aces_container
66
77if [[ " $OSTYPE " == " linux-gnu" * ]] || [[ " $OSTYPE " == " darwin" * ]]; then
88 cmake \
9- -S aces_container \
10- -B aces_container/build \
9+ -S ../ aces_container \
10+ -B ../ aces_container/build \
1111 -DCMAKE_CXX_FLAGS=" -Wno-c++11-narrowing"
12- cmake --build aces_container/build
13- sudo cmake --install aces_container/build
12+ cmake --build ../ aces_container/build
13+ sudo cmake --install ../ aces_container/build
1414else
1515 cmake \
16- -S aces_container \
17- -B aces_container/build \
18- -DCMAKE_INSTALL_PREFIX=" ." \
16+ -S ../ aces_container \
17+ -B ../ aces_container/build \
18+ -DCMAKE_INSTALL_PREFIX=" .. " \
1919 -DBUILD_SHARED_LIBS=OFF
20- cmake --build aces_container/build --config Release
21- cmake --install aces_container/build --config Release
20+ cmake --build ../ aces_container/build --config Release
21+ cmake --install ../ aces_container/build --config Release
2222fi
2323
2424cd ../..
You can’t perform that action at this time.
0 commit comments