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
639450ef
Commit
639450ef
authored
Jul 02, 2013
by
Philippe FOUBERT
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PvAPI support on Windows with MinGW (PR #1038 applied to the branch 2.4)
parent
e3ae36dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
OpenCVFindLibsVideo.cmake
cmake/OpenCVFindLibsVideo.cmake
+8
-1
CMakeLists.txt
modules/highgui/CMakeLists.txt
+1
-0
No files found.
cmake/OpenCVFindLibsVideo.cmake
View file @
639450ef
...
@@ -58,7 +58,14 @@ if(WITH_PVAPI)
...
@@ -58,7 +58,14 @@ if(WITH_PVAPI)
set
(
_PVAPI_LIBRARY
"
${
_PVAPI_LIBRARY
}
/
${
CMAKE_OPENCV_GCC_VERSION_MAJOR
}
.
${
CMAKE_OPENCV_GCC_VERSION_MINOR
}
"
)
set
(
_PVAPI_LIBRARY
"
${
_PVAPI_LIBRARY
}
/
${
CMAKE_OPENCV_GCC_VERSION_MAJOR
}
.
${
CMAKE_OPENCV_GCC_VERSION_MINOR
}
"
)
endif
()
endif
()
set
(
PVAPI_LIBRARY
"
${
_PVAPI_LIBRARY
}
/
${
CMAKE_STATIC_LIBRARY_PREFIX
}
PvAPI
${
CMAKE_STATIC_LIBRARY_SUFFIX
}
"
CACHE PATH
"The PvAPI library"
)
if
(
WIN32
)
if
(
MINGW
)
set
(
PVAPI_DECLARATIONS
"-DPVDECL=__stdcall"
)
endif
(
MINGW
)
set
(
PVAPI_LIBRARY
"
${
_PVAPI_LIBRARY
}
/PvAPI.lib"
CACHE PATH
"The PvAPI library"
)
else
(
WIN32
)
set
(
PVAPI_LIBRARY
"
${
_PVAPI_LIBRARY
}
/
${
CMAKE_STATIC_LIBRARY_PREFIX
}
PvAPI
${
CMAKE_STATIC_LIBRARY_SUFFIX
}
"
CACHE PATH
"The PvAPI library"
)
endif
(
WIN32
)
if
(
EXISTS
"
${
PVAPI_LIBRARY
}
"
)
if
(
EXISTS
"
${
PVAPI_LIBRARY
}
"
)
set
(
HAVE_PVAPI TRUE
)
set
(
HAVE_PVAPI TRUE
)
endif
()
endif
()
...
...
modules/highgui/CMakeLists.txt
View file @
639450ef
...
@@ -197,6 +197,7 @@ endif(HAVE_FFMPEG)
...
@@ -197,6 +197,7 @@ endif(HAVE_FFMPEG)
if
(
HAVE_PVAPI
)
if
(
HAVE_PVAPI
)
add_definitions
(
-DHAVE_PVAPI
)
add_definitions
(
-DHAVE_PVAPI
)
add_definitions
(
${
PVAPI_DECLARATIONS
}
)
ocv_include_directories
(
${
PVAPI_INCLUDE_PATH
}
)
ocv_include_directories
(
${
PVAPI_INCLUDE_PATH
}
)
set
(
highgui_srcs src/cap_pvapi.cpp
${
highgui_srcs
}
)
set
(
highgui_srcs src/cap_pvapi.cpp
${
highgui_srcs
}
)
list
(
APPEND HIGHGUI_LIBRARIES
${
PVAPI_LIBRARY
}
)
list
(
APPEND HIGHGUI_LIBRARIES
${
PVAPI_LIBRARY
}
)
...
...
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