Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
2f3f677f
Commit
2f3f677f
authored
Sep 22, 2010
by
Ethan Rublee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
woops, broke cmake for a bit...
parent
60357e25
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
README.android.txt
android/README.android.txt
+3
-0
CMakeLists.txt
modules/highgui/CMakeLists.txt
+5
-3
No files found.
android/README.android.txt
View file @
2f3f677f
...
...
@@ -32,4 +32,7 @@ LOCAL_LDLIBS += $(OPENCV_LIBS)
LOCAL_C_INCLUDES += $(OPENCV_INCLUDES)
for now, you also need to cd to android-jni and run make
this will create the android shared library with some useful functionality
that may be reused in android projects.
modules/highgui/CMakeLists.txt
View file @
2f3f677f
...
...
@@ -3,7 +3,7 @@
# Some parts taken from version of Hartmut Seichter, HIT Lab NZ.
# Jose Luis Blanco, 2008
# ----------------------------------------------------------------------------
if
(
!
ANDROID
)
if
(
NOT
ANDROID
)
project
(
opencv_highgui
)
if
(
WITH_JPEG
)
...
...
@@ -334,7 +334,9 @@ install(FILES ${highgui_ext_hdrs}
DESTINATION include/opencv2/highgui
COMPONENT main
)
else
(
!ANDROID
)
endif
()
if
(
ANDROID
)
set
(
high_gui_android_srcs src/bitstrm.cpp
src/cap.cpp
src/grfmt_base.cpp
...
...
@@ -350,4 +352,4 @@ set(high_gui_android_srcs src/bitstrm.cpp
src/grfmt_pxm.cpp
src/window.cpp
)
define_android_manual
(
highgui
"
${
high_gui_android_srcs
}
"
"$(LOCAL_PATH)/src $(OPENCV_INCLUDES)"
)
endif
(
!ANDROID
)
endif
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment