Skip to content

Commit

Permalink
I have worked on:
Browse files Browse the repository at this point in the history
- Updated test cases
  • Loading branch information
AliAzaz committed Sep 21, 2023
1 parent 99435d1 commit 41594b0
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,14 @@ find_library( # Sets the name of the path variable.
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.

target_link_libraries( # Specifies the target library.
native-lib
if (DEFINED ENV{EXCLUDE_LIB_CPP} AND "$ENV{EXCLUDE_LIB_CPP}" STREQUAL "true")
message(STATUS "Excluding lib.cpp from the build")
else ()
# Include lib.cpp in the build
target_link_libraries( # Specifies the target library.
native-lib

# Links the target library to the log library
# included in the NDK.
${log-lib})
# Links the target library to the log library
# included in the NDK.
${log-lib})
endif ()

0 comments on commit 41594b0

Please sign in to comment.