Skip to content

Commit

Permalink
Move cmake file
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltroger committed Feb 28, 2024
1 parent 733f443 commit a994580
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ android {
}
externalNativeBuild {
cmake {
path 'CMakeLists.txt'
path 'src/main/cpp/CMakeLists.txt'
}
}
buildFeatures {
Expand Down
2 changes: 1 addition & 1 deletion app/CMakeLists.txt → app/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ find_package(OpenCV REQUIRED CONFIG)
add_library(
app
SHARED
src/main/cpp/native_opencv.cpp
native_opencv.cpp
)
# compile with c++20
set_target_properties(
Expand Down

0 comments on commit a994580

Please sign in to comment.