Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct android makefile relative paths #46

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions android/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ set (CMAKE_CXX_STANDARD 11)
# add directories to "include" search paths
include_directories(
../cpp
../node_modules/react-native/React
../node_modules/react-native/React/Base
../node_modules/react-native/ReactCommon/jsi
../../../node_modules/react-native/React
../../../node_modules/react-native/React/Base
../../../node_modules/react-native/ReactCommon/jsi
)

# set the base libsodium build directory
Expand All @@ -33,7 +33,7 @@ set_target_properties( sodium PROPERTIES IMPORTED_LOCATION ${LIBSODIUM_BUILD_DIR
# which will be built from the listed source files
add_library(libsodium
SHARED
../node_modules/react-native/ReactCommon/jsi/jsi/jsi.cpp
../../../node_modules/react-native/ReactCommon/jsi/jsi/jsi.cpp
../cpp/react-native-libsodium.cpp
../cpp/react-native-libsodium.h
cpp-adapter.cpp
Expand Down