Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
chambbj committed Aug 31, 2017
1 parent 079e6aa commit 0ab9601
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/ci/simple.sh
Expand Up @@ -28,18 +28,22 @@ apk add \
curl-dev
gcc --version
g++ --version
make --version
which gcc
which g++
which make

cd /pdal

mkdir -p _build || exit 1
cd _build || exit 1

cmake .. \
-G "Unix Makefiles" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=gcc \
-DCMAKE_CXX_COMPILER=g++
-DCMAKE_CXX_COMPILER=g++ \
-DCMAKE_MAKE_PROGRAM=make

make

0 comments on commit 0ab9601

Please sign in to comment.