From 63c0d6335ff64c1efc9e349e98eb166c1fc129ac Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Tue, 6 Aug 2024 17:00:41 -0700 Subject: [PATCH] ci: allow example cpp apps to be dynamically linked --- scripts/run-hello-apps.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/run-hello-apps.sh b/scripts/run-hello-apps.sh index e24412a75..1d7d11ad5 100755 --- a/scripts/run-hello-apps.sh +++ b/scripts/run-hello-apps.sh @@ -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"