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
a6d88b4d
Commit
a6d88b4d
authored
Jun 30, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9044 from neilsh-msft:WinRTBuild
parents
64b483c6
3f72ff21
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
window.cpp
modules/highgui/src/window.cpp
+1
-1
window_winrt_bridge.cpp
modules/highgui/src/window_winrt_bridge.cpp
+2
-0
CMakeLists.txt
modules/videoio/CMakeLists.txt
+3
-0
No files found.
modules/highgui/src/window.cpp
View file @
a6d88b4d
...
...
@@ -218,7 +218,7 @@ int cv::waitKey(int delay)
{
CV_TRACE_FUNCTION
();
int
code
=
waitKeyEx
(
delay
);
#ifndef
HAVE_
WINRT
#ifndef WINRT
static
int
use_legacy
=
-
1
;
if
(
use_legacy
<
0
)
{
...
...
modules/highgui/src/window_winrt_bridge.cpp
View file @
a6d88b4d
...
...
@@ -24,6 +24,8 @@
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include "precomp.hpp"
#include "opencv2\highgui\highgui_winrt.hpp"
#include "window_winrt_bridge.hpp"
...
...
modules/videoio/CMakeLists.txt
View file @
a6d88b4d
...
...
@@ -256,6 +256,9 @@ endif()
if
(
MSVC
)
set_target_properties
(
${
the_module
}
PROPERTIES LINK_FLAGS
"/NODEFAULTLIB:atlthunk.lib /NODEFAULTLIB:atlsd.lib /NODEFAULTLIB:libcmt.lib /DEBUG"
)
if
(
DEFINED WINRT AND NOT DEFINED ENABLE_WINRT_MODE_NATIVE
)
set_target_properties
(
${
the_module
}
PROPERTIES VS_DESKTOP_EXTENSIONS_VERSION
"
${
CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION
}
"
)
endif
()
endif
()
#stop automatic dependencies propagation for this module
...
...
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