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
b19f81b3
Commit
b19f81b3
authored
Nov 29, 2017
by
Alexander Alekhin
Committed by
Alexander Alekhin
Nov 29, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: update BUILD_DOCS / ENABLE_PYLINT options, add BUILD_JAVA
parent
28717d04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
CMakeLists.txt
CMakeLists.txt
+14
-10
No files found.
CMakeLists.txt
View file @
b19f81b3
...
...
@@ -257,7 +257,7 @@ OCV_OPTION(BUILD_SHARED_LIBS "Build shared libraries (.dll/.so) instead o
OCV_OPTION
(
BUILD_opencv_apps
"Build utility applications (used for example to train classifiers)"
(
NOT ANDROID AND NOT WINRT
)
IF
(
NOT APPLE_FRAMEWORK
)
)
OCV_OPTION
(
BUILD_opencv_js
"Build JavaScript bindings by Emscripten"
OFF
)
OCV_OPTION
(
BUILD_ANDROID_EXAMPLES
"Build examples for Android platform"
ON IF ANDROID
)
OCV_OPTION
(
BUILD_DOCS
"Create build rules for OpenCV Documentation"
ON
IF
(
NOT WINRT
OR
APPLE_FRAMEWORK
))
OCV_OPTION
(
BUILD_DOCS
"Create build rules for OpenCV Documentation"
ON
IF
(
NOT WINRT
AND NOT
APPLE_FRAMEWORK
))
OCV_OPTION
(
BUILD_EXAMPLES
"Build all examples"
OFF
)
OCV_OPTION
(
BUILD_PACKAGE
"Enables 'make package_source' command"
ON IF NOT WINRT
)
OCV_OPTION
(
BUILD_PERF_TESTS
"Build performance tests"
ON
IF
(
NOT APPLE_FRAMEWORK
)
)
...
...
@@ -268,6 +268,8 @@ OCV_OPTION(BUILD_WITH_DYNAMIC_IPP "Enables dynamic linking of IPP (only for st
OCV_OPTION
(
BUILD_FAT_JAVA_LIB
"Create fat java wrapper containing the whole OpenCV library"
ON IF NOT BUILD_SHARED_LIBS AND CMAKE_COMPILER_IS_GNUCXX
)
OCV_OPTION
(
BUILD_ANDROID_SERVICE
"Build OpenCV Manager for Google Play"
OFF IF ANDROID
)
OCV_OPTION
(
BUILD_CUDA_STUBS
"Build CUDA modules stubs when no CUDA SDK"
OFF
IF
(
NOT APPLE_FRAMEWORK
)
)
OCV_OPTION
(
BUILD_JAVA
"Enable Java support"
(
ANDROID OR NOT CMAKE_CROSSCOMPILING
)
IF
(
ANDROID
OR
(
NOT APPLE_FRAMEWORK AND NOT WINRT
))
)
# 3rd party libs
OCV_OPTION
(
BUILD_ZLIB
"Build zlib from source"
WIN32 OR APPLE
)
...
...
@@ -314,7 +316,7 @@ OCV_OPTION(CV_ENABLE_INTRINSICS "Use intrinsic-based optimized code" ON )
OCV_OPTION
(
CV_DISABLE_OPTIMIZATION
"Disable explicit optimized code (dispatched code/intrinsics/loop unrolling/etc)"
OFF
)
OCV_OPTION
(
CV_TRACE
"Enable OpenCV code trace"
ON
)
OCV_OPTION
(
ENABLE_PYLINT
"Add target with Pylint checks"
(
${
BUILD_DOCS
}
OR
${
BUILD_EXAMPLES
}
)
)
OCV_OPTION
(
ENABLE_PYLINT
"Add target with Pylint checks"
(
${
BUILD_DOCS
}
OR
${
BUILD_EXAMPLES
}
)
IF
(
NOT CMAKE_CROSSCOMPILING AND NOT APPLE_FRAMEWORK
)
)
if
(
ENABLE_IMPL_COLLECTION
)
add_definitions
(
-DCV_COLLECT_IMPL_DATA
)
...
...
@@ -610,15 +612,17 @@ else()
endif
()
# --- Java Support ---
include
(
cmake/OpenCVDetectApacheAnt.cmake
)
if
(
ANDROID
)
include
(
cmake/OpenCVDetectAndroidSDK.cmake
)
if
(
BUILD_JAVA
)
include
(
cmake/OpenCVDetectApacheAnt.cmake
)
if
(
ANDROID
)
include
(
cmake/OpenCVDetectAndroidSDK.cmake
)
if
(
NOT ANDROID_TOOLS_Pkg_Revision GREATER 13
)
message
(
WARNING
"OpenCV requires Android SDK tools revision 14 or newer. Otherwise tests and samples will no be compiled."
)
if
(
NOT ANDROID_TOOLS_Pkg_Revision GREATER 13
)
message
(
WARNING
"OpenCV requires Android SDK tools revision 14 or newer. Otherwise tests and samples will no be compiled."
)
endif
()
else
()
find_package
(
JNI
)
endif
()
else
()
find_package
(
JNI
)
endif
()
if
(
ENABLE_PYLINT
)
...
...
@@ -1386,7 +1390,7 @@ if(PYLINT_FOUND AND PYLINT_EXECUTABLE)
endif
()
# ========================== java ==========================
if
(
BUILD_opencv_java
)
if
(
BUILD_
JAVA OR BUILD_
opencv_java
)
status
(
""
)
status
(
" Java:"
)
status
(
" ant:"
ANT_EXECUTABLE THEN
"
${
ANT_EXECUTABLE
}
(ver
${
ANT_VERSION
}
)"
ELSE NO
)
...
...
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