Skip to content

Commit b19f81b

Browse files
committed
cmake: update BUILD_DOCS / ENABLE_PYLINT options, add BUILD_JAVA
1 parent 28717d0 commit b19f81b

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

CMakeLists.txt

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ OCV_OPTION(BUILD_SHARED_LIBS "Build shared libraries (.dll/.so) instead o
257257
OCV_OPTION(BUILD_opencv_apps "Build utility applications (used for example to train classifiers)" (NOT ANDROID AND NOT WINRT) IF (NOT APPLE_FRAMEWORK) )
258258
OCV_OPTION(BUILD_opencv_js "Build JavaScript bindings by Emscripten" OFF )
259259
OCV_OPTION(BUILD_ANDROID_EXAMPLES "Build examples for Android platform" ON IF ANDROID )
260-
OCV_OPTION(BUILD_DOCS "Create build rules for OpenCV Documentation" ON IF (NOT WINRT OR APPLE_FRAMEWORK))
260+
OCV_OPTION(BUILD_DOCS "Create build rules for OpenCV Documentation" ON IF (NOT WINRT AND NOT APPLE_FRAMEWORK))
261261
OCV_OPTION(BUILD_EXAMPLES "Build all examples" OFF )
262262
OCV_OPTION(BUILD_PACKAGE "Enables 'make package_source' command" ON IF NOT WINRT)
263263
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
268268
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 )
269269
OCV_OPTION(BUILD_ANDROID_SERVICE "Build OpenCV Manager for Google Play" OFF IF ANDROID )
270270
OCV_OPTION(BUILD_CUDA_STUBS "Build CUDA modules stubs when no CUDA SDK" OFF IF (NOT APPLE_FRAMEWORK) )
271+
OCV_OPTION(BUILD_JAVA "Enable Java support" (ANDROID OR NOT CMAKE_CROSSCOMPILING) IF (ANDROID OR (NOT APPLE_FRAMEWORK AND NOT WINRT)) )
272+
271273

272274
# 3rd party libs
273275
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 )
314316
OCV_OPTION(CV_DISABLE_OPTIMIZATION "Disable explicit optimized code (dispatched code/intrinsics/loop unrolling/etc)" OFF )
315317
OCV_OPTION(CV_TRACE "Enable OpenCV code trace" ON)
316318

317-
OCV_OPTION(ENABLE_PYLINT "Add target with Pylint checks" (${BUILD_DOCS} OR ${BUILD_EXAMPLES}) )
319+
OCV_OPTION(ENABLE_PYLINT "Add target with Pylint checks" (${BUILD_DOCS} OR ${BUILD_EXAMPLES}) IF (NOT CMAKE_CROSSCOMPILING AND NOT APPLE_FRAMEWORK) )
318320

319321
if(ENABLE_IMPL_COLLECTION)
320322
add_definitions(-DCV_COLLECT_IMPL_DATA)
@@ -610,15 +612,17 @@ else()
610612
endif()
611613

612614
# --- Java Support ---
613-
include(cmake/OpenCVDetectApacheAnt.cmake)
614-
if(ANDROID)
615-
include(cmake/OpenCVDetectAndroidSDK.cmake)
615+
if(BUILD_JAVA)
616+
include(cmake/OpenCVDetectApacheAnt.cmake)
617+
if(ANDROID)
618+
include(cmake/OpenCVDetectAndroidSDK.cmake)
616619

617-
if(NOT ANDROID_TOOLS_Pkg_Revision GREATER 13)
618-
message(WARNING "OpenCV requires Android SDK tools revision 14 or newer. Otherwise tests and samples will no be compiled.")
620+
if(NOT ANDROID_TOOLS_Pkg_Revision GREATER 13)
621+
message(WARNING "OpenCV requires Android SDK tools revision 14 or newer. Otherwise tests and samples will no be compiled.")
622+
endif()
623+
else()
624+
find_package(JNI)
619625
endif()
620-
else()
621-
find_package(JNI)
622626
endif()
623627

624628
if(ENABLE_PYLINT)
@@ -1386,7 +1390,7 @@ if(PYLINT_FOUND AND PYLINT_EXECUTABLE)
13861390
endif()
13871391

13881392
# ========================== java ==========================
1389-
if(BUILD_opencv_java)
1393+
if(BUILD_JAVA OR BUILD_opencv_java)
13901394
status("")
13911395
status(" Java:")
13921396
status(" ant:" ANT_EXECUTABLE THEN "${ANT_EXECUTABLE} (ver ${ANT_VERSION})" ELSE NO)

0 commit comments

Comments
 (0)