mirror of https://github.com/opencv/opencv.git
Merge pull request #15059 from hugolm84:improved-support-for-wince
* Improve support for Windows Embedded Compact * Remove redundant set(WINCE true) and format CMakepull/15150/head
parent
ad092bf1ce
commit
2ee00e7f7d
10 changed files with 174 additions and 45 deletions
@ -0,0 +1,12 @@ |
||||
if(WINCE) |
||||
# CommCtrl.lib does not exist in headless WINCE Adding this will make CMake |
||||
# Try_Compile succeed and therefore also C/C++ ABI Detetection work |
||||
# https://gitlab.kitware.com/cmake/cmake/blob/master/Modules/Platform/Windows- |
||||
# MSVC.cmake |
||||
set(CMAKE_C_STANDARD_LIBRARIES_INIT "coredll.lib") |
||||
set(CMAKE_CXX_STANDARD_LIBRARIES_INIT ${CMAKE_C_STANDARD_LIBRARIES_INIT}) |
||||
foreach(ID EXE SHARED MODULE) |
||||
string(APPEND CMAKE_${ID}_LINKER_FLAGS_INIT |
||||
" /NODEFAULTLIB:libc.lib /NODEFAULTLIB:oldnames.lib") |
||||
endforeach() |
||||
endif() |
@ -0,0 +1,35 @@ |
||||
set(CMAKE_SYSTEM_NAME WindowsCE) |
||||
|
||||
if(NOT CMAKE_SYSTEM_VERSION) |
||||
set(CMAKE_SYSTEM_VERSION 8.0) |
||||
endif() |
||||
|
||||
if(NOT CMAKE_SYSTEM_PROCESSOR) |
||||
set(CMAKE_SYSTEM_PROCESSOR armv7-a) |
||||
endif() |
||||
|
||||
if(NOT CMAKE_GENERATOR_TOOLSET) |
||||
set(CMAKE_GENERATOR_TOOLSET CE800) |
||||
endif() |
||||
|
||||
# Needed to make try_compile to succeed |
||||
if(BUILD_HEADLESS) |
||||
set(CMAKE_USER_MAKE_RULES_OVERRIDE |
||||
${CMAKE_CURRENT_LIST_DIR}/arm-wince-headless-overrides.cmake) |
||||
endif() |
||||
|
||||
if(NOT CMAKE_FIND_ROOT_PATH_MODE_PROGRAM) |
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) |
||||
endif() |
||||
|
||||
if(NOT CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) |
||||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) |
||||
endif() |
||||
|
||||
if(NOT CMAKE_FIND_ROOT_PATH_MODE_INCLUDE) |
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) |
||||
endif() |
||||
|
||||
if(NOT CMAKE_FIND_ROOT_PATH_MODE_PACKAGE) |
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) |
||||
endif() |
@ -0,0 +1,62 @@ |
||||
# Building OpenCV from Source for Windows Embedded Compact (WINCE/WEC) |
||||
|
||||
## Requirements |
||||
CMake 3.1.0 or higher |
||||
Windows Embedded Compact SDK |
||||
|
||||
## Configuring |
||||
To configure CMake for Windows Embedded, specify Visual Studio 2013 as generator and the name of your installed SDK: |
||||
|
||||
`cmake -G "Visual Studio 12 2013" -A "MySDK WEC2013" -DCMAKE_TOOLCHAIN_FILE:FILEPATH=../platforms/wince/arm-wince.toolchain.cmake` |
||||
|
||||
If you are building for a headless WINCE, specify `-DBUILD_HEADLESS=ON` when configuring. This will remove the `commctrl.lib` dependency. |
||||
|
||||
If you are building for anything else than WINCE800, you need to specify that in the configuration step. Example: |
||||
|
||||
``` |
||||
-DCMAKE_SYSTEM_VERSION=7.0 -DCMAKE_GENERATOR_TOOLSET=CE700 -DCMAKE_SYSTEM_PROCESSOR=arm-v4 |
||||
``` |
||||
|
||||
For headless WEC2013, this configuration may not be limited to but is known to work: |
||||
|
||||
``` |
||||
-DBUILD_EXAMPLES=OFF ` |
||||
-DBUILD_opencv_apps=OFF ` |
||||
-DBUILD_opencv_calib3d=OFF ` |
||||
-DBUILD_opencv_highgui=OFF ` |
||||
-DBUILD_opencv_features2d=OFF ` |
||||
-DBUILD_opencv_flann=OFF ` |
||||
-DBUILD_opencv_ml=OFF ` |
||||
-DBUILD_opencv_objdetect=OFF ` |
||||
-DBUILD_opencv_photo=OFF ` |
||||
-DBUILD_opencv_shape=OFF ` |
||||
-DBUILD_opencv_stitching=OFF ` |
||||
-DBUILD_opencv_superres=OFF ` |
||||
-DBUILD_opencv_ts=OFF ` |
||||
-DBUILD_opencv_video=OFF ` |
||||
-DBUILD_opencv_videoio=OFF ` |
||||
-DBUILD_opencv_videostab=OFF ` |
||||
-DBUILD_opencv_dnn=OFF ` |
||||
-DBUILD_opencv_java=OFF ` |
||||
-DBUILD_opencv_python2=OFF ` |
||||
-DBUILD_opencv_python3=OFF ` |
||||
-DBUILD_opencv_java_bindings_generator=OFF ` |
||||
-DBUILD_opencv_python_bindings_generator=OFF ` |
||||
-DBUILD_TIFF=OFF ` |
||||
-DCV_TRACE=OFF ` |
||||
-DWITH_OPENCL=OFF ` |
||||
-DHAVE_OPENCL=OFF ` |
||||
-DWITH_QT=OFF ` |
||||
-DWITH_GTK=OFF ` |
||||
-DWITH_QUIRC=OFF ` |
||||
-DWITH_JASPER=OFF ` |
||||
-DWITH_WEBP=OFF ` |
||||
-DWITH_PROTOBUF=OFF ` |
||||
-DBUILD_SHARED_LIBS=OFF ` |
||||
-DWITH_OPENEXR=OFF ` |
||||
-DWITH_TIFF=OFF ` |
||||
``` |
||||
|
||||
## Building |
||||
You are required to build using Unicode: |
||||
`cmake --build . -- /p:CharacterSet=Unicode` |
Loading…
Reference in new issue