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
00de4b93
Commit
00de4b93
authored
Apr 16, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compiler flags caching in toolchain; fixed zlib search.
parent
2f88062d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
14 deletions
+6
-14
android.toolchain.cmake
android/android.toolchain.cmake
+0
-0
OpenCVDetectAndroidSDK.cmake
cmake/OpenCVDetectAndroidSDK.cmake
+1
-1
OpenCVDetectApacheAnt.cmake
cmake/OpenCVDetectApacheAnt.cmake
+1
-1
OpenCVDetectPython.cmake
cmake/OpenCVDetectPython.cmake
+1
-1
OpenCVIOLibs.cmake
cmake/OpenCVIOLibs.cmake
+3
-11
No files found.
android/android.toolchain.cmake
View file @
00de4b93
This diff is collapsed.
Click to expand it.
cmake/OpenCVDetectAndroidSDK.cmake
View file @
00de4b93
...
...
@@ -39,7 +39,7 @@ find_host_program(ANDROID_EXECUTABLE
if
(
ANDROID_EXECUTABLE
)
if
(
NOT ANDROID_SDK_DETECT_QUIET
)
message
(
STATUS
"
Found android tool:
${
ANDROID_EXECUTABLE
}
"
)
message
(
STATUS
"Found android tool:
${
ANDROID_EXECUTABLE
}
"
)
endif
()
get_filename_component
(
ANDROID_SDK_TOOLS_PATH
"
${
ANDROID_EXECUTABLE
}
"
PATH
)
...
...
cmake/OpenCVDetectApacheAnt.cmake
View file @
00de4b93
...
...
@@ -21,5 +21,5 @@ if(ANT_EXECUTABLE)
string
(
REGEX MATCH
"[0-9]+.[0-9]+.[0-9]+"
ANT_VERSION
"
${
ANT_VERSION_FULL
}
"
)
set
(
ANT_VERSION
"
${
ANT_VERSION
}
"
CACHE INTERNAL
"Detected ant vesion"
)
message
(
STATUS
"
Found apache ant
${
ANT_VERSION
}
:
${
ANT_EXECUTABLE
}
"
)
message
(
STATUS
"Found apache ant
${
ANT_VERSION
}
:
${
ANT_EXECUTABLE
}
"
)
endif
()
cmake/OpenCVDetectPython.cmake
View file @
00de4b93
...
...
@@ -92,7 +92,7 @@ if(PYTHON_EXECUTABLE)
find_host_program
(
SPHINX_BUILD sphinx-build
)
if
(
SPHINX_BUILD
)
set
(
HAVE_SPHINX 1
)
message
(
STATUS
"
Found Sphinx
${
SPHINX_VERSION
}
:
${
SPHINX_BUILD
}
"
)
message
(
STATUS
"Found Sphinx
${
SPHINX_VERSION
}
:
${
SPHINX_BUILD
}
"
)
endif
()
endif
()
endif
(
BUILD_DOCS
)
...
...
cmake/OpenCVIOLibs.cmake
View file @
00de4b93
...
...
@@ -8,17 +8,9 @@ endmacro()
if
(
BUILD_ZLIB
)
unset_all
(
ZLIB_FOUND
)
else
()
if
(
ANDROID
)
set
(
ZLIB_FOUND TRUE
)
set
(
ZLIB_LIBRARY z
)
set
(
ZLIB_LIBRARIES
${
ZLIB_LIBRARY
}
)
set
(
ZLIB_INCLUDE_DIR
""
)
ocv_parse_header2
(
ZLIB
"
${
ANDROID_SYSROOT
}
/usr/include/zlib.h"
ZLIB_VERSION
""
)
else
()
include
(
FindZLIB
)
if
(
NOT ZLIB_VERSION_STRING
)
ocv_parse_header2
(
ZLIB
"
${
ZLIB_INCLUDE_DIR
}
/zlib.h"
ZLIB_VERSION
""
)
endif
()
include
(
FindZLIB
)
if
(
NOT ZLIB_VERSION_STRING
)
ocv_parse_header2
(
ZLIB
"
${
ZLIB_INCLUDE_DIR
}
/zlib.h"
ZLIB_VERSION
""
)
endif
()
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