Skip to content

Commit

Permalink
[temp] Set -std=c++14 explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
taketwo committed Dec 9, 2018
1 parent f40b858 commit 903bb88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/scripts/build_tutorials.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ for DIRECTORY in "$SOURCE_DIR"/*/ ; do
TUTORIAL_BUILD_DIR="$BUILD_DIR/$NAME"
mkdir -p "$TUTORIAL_BUILD_DIR" && cd "$TUTORIAL_BUILD_DIR" || exit
echo "Configuring tutorial: $NAME"
if ! cmake "$TUTORIAL_SOURCE_DIR" -DPCL_DIR="$INSTALL_DIR"; then
if ! cmake "$TUTORIAL_SOURCE_DIR" -DPCL_DIR="$INSTALL_DIR" -DCMAKE_CXX_FLAGS="-std=c++14"; then
STATUS="cmake error"
else
echo "Building tutorial: $NAME"
Expand Down

0 comments on commit 903bb88

Please sign in to comment.