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
ea5dd74a
Commit
ea5dd74a
authored
Aug 14, 2013
by
kdrobnyh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add IPP 8.0 support in FindIPP script
parent
4943b0a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
OpenCVFindIPP.cmake
cmake/OpenCVFindIPP.cmake
+8
-5
No files found.
cmake/OpenCVFindIPP.cmake
View file @
ea5dd74a
...
...
@@ -136,17 +136,20 @@ endfunction()
# ------------------------------------------------------------------------
# This is auxiliary function called from set_ipp_variables()
# to set IPP_LIBRARIES variable in IPP 7.x style
# to set IPP_LIBRARIES variable in IPP 7.x
and 8.x
style
# ------------------------------------------------------------------------
function
(
set_ipp_new_libraries _LATEST_VERSION
)
set
(
IPP_PREFIX
"ipp"
)
if
(
${
_LATEST_VERSION
}
VERSION_LESS
"8.0"
)
set
(
IPP_SUFFIX
"_l"
)
# static not threaded libs suffi
x
set
(
IPP_SUFFIX
"_l"
)
# static not threaded libs suffix IPP 7.
x
else
()
set
(
IPP_SUFFIX
""
)
# static not threaded libs suffix
if
(
WIN32
)
set
(
IPP_SUFFIX
"mt"
)
# static not threaded libs suffix IPP 8.x for Windows
else
()
set
(
IPP_SUFFIX
""
)
# static not threaded libs suffix IPP 8.x for Linux/OS X
endif
()
endif
()
set
(
IPP_THRD
"_t"
)
# static threaded libs suffix
set
(
IPPCORE
"core"
)
# core functionality
set
(
IPPSP
"s"
)
# signal processing
set
(
IPPIP
"i"
)
# image processing
...
...
@@ -218,7 +221,7 @@ function(set_ipp_variables _LATEST_VERSION)
set
(
IPP_LIBRARY_DIRS
${
IPP_ROOT_DIR
}
/lib/ia32 PARENT_SCOPE
)
endif
()
# set IPP_LIBRARIES variable (7.x lib names)
# set IPP_LIBRARIES variable (7.x
or 8.x
lib names)
set_ipp_new_libraries
(
${
_LATEST_VERSION
}
)
set
(
IPP_LIBRARIES
${
IPP_LIBRARIES
}
PARENT_SCOPE
)
message
(
STATUS
"IPP libs:
${
IPP_LIBRARIES
}
"
)
...
...
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