Skip to content

Commit

Permalink
ci: allow example cpp apps to be dynamically linked
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Aug 7, 2024
1 parent 451ca13 commit 63c0d63
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/run-hello-apps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ cd build-"$1" || exit
# script ends.
trap cleanup EXIT

cmake -G Ninja -D CMAKE_BUILD_TYPE=Release -D BUILD_TESTING=OFF -D LD_BUILD_SHARED_LIBS=$dynamic_linkage ..
cmake -G Ninja -D CMAKE_BUILD_TYPE=Release \
-D BUILD_TESTING=OFF \
-D LD_BUILD_SHARED_LIBS=$dynamic_linkage \
-D LD_BUILD_EXPORT_ALL_SYMBOLS=ON ..

export LD_MOBILE_KEY="bogus"
export LD_SDK_KEY="bogus"
Expand Down

0 comments on commit 63c0d63

Please sign in to comment.