Skip to content

Commit

Permalink
add hello service to build all script
Browse files Browse the repository at this point in the history
  • Loading branch information
meyertst-aws committed Aug 16, 2023
1 parent ee4977b commit d60626e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cpp/build_all_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@


CMAKE_FILES=$(ls example_code/*/CMakeLists.txt)
HELLO_CMAKE_FILES=$(ls example_code/*/hello_*/CMakeLists.txt)
CMAKE_FILES="$CMAKE_FILES $HELLO_CMAKE_FILES"

CMAKE_FILES=($CMAKE_FILES)
echo "CMAKE_FILES ${CMAKE_FILES}"
echo "CMAKE_FILES ${CMAKE_FILES[@]}"

len=${#CMAKE_FILES[@]}
echo "len ${len}"
Expand Down

0 comments on commit d60626e

Please sign in to comment.