We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fb59e6 commit d0b3ba4Copy full SHA for d0b3ba4
2 files changed
scripts/android/cmake.sh
@@ -129,6 +129,7 @@ if [[ "$ADJUST_SDK_TOKEN" ]]; then
129
print Y "Use adjust config"
130
ADJUST="CONFIG+=adjust"
131
else
132
+ print Y "No adjust token found."
133
ADJUST="CONFIG-=adjust"
134
fi
135
src/platforms/android/sources.cmake
@@ -9,9 +9,9 @@ target_sources(shared-sources INTERFACE
9
)
10
11
if(ADJUST_TOKEN)
12
- message(Adjust SDK enabled)
+ message("Adjust SDK enabled")
13
# SDK Token present, let's enable that.
14
- target_compile_definitions(shared-sources INTERFACE MZ_ADJUST)
+ target_compile_definitions(mozillavpn PUBLIC MZ_ADJUST)
15
16
target_sources(shared-sources INTERFACE
17
${CMAKE_CURRENT_SOURCE_DIR}/adjust/adjustfiltering.cpp
0 commit comments