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
a550e506
Commit
a550e506
authored
May 24, 2019
by
Maksim Shabunin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix IE status message on MacOS
parent
472f3b73
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
CMakeLists.txt
CMakeLists.txt
+10
-5
No files found.
CMakeLists.txt
View file @
a550e506
...
@@ -1583,11 +1583,16 @@ if(WITH_INF_ENGINE OR INF_ENGINE_TARGET)
...
@@ -1583,11 +1583,16 @@ if(WITH_INF_ENGINE OR INF_ENGINE_TARGET)
if
(
INF_ENGINE_TARGET
)
if
(
INF_ENGINE_TARGET
)
set
(
__msg
"YES (
${
INF_ENGINE_RELEASE
}
/
${
INF_ENGINE_VERSION
}
)"
)
set
(
__msg
"YES (
${
INF_ENGINE_RELEASE
}
/
${
INF_ENGINE_VERSION
}
)"
)
get_target_property
(
_lib
${
INF_ENGINE_TARGET
}
IMPORTED_LOCATION
)
get_target_property
(
_lib
${
INF_ENGINE_TARGET
}
IMPORTED_LOCATION
)
if
(
NOT _lib
)
get_target_property
(
_lib_imp_rel
${
INF_ENGINE_TARGET
}
IMPORTED_IMPLIB_RELEASE
)
get_target_property
(
_lib_rel
${
INF_ENGINE_TARGET
}
IMPORTED_IMPLIB_RELEASE
)
get_target_property
(
_lib_imp_dbg
${
INF_ENGINE_TARGET
}
IMPORTED_IMPLIB_DEBUG
)
get_target_property
(
_lib_dbg
${
INF_ENGINE_TARGET
}
IMPORTED_IMPLIB_DEBUG
)
get_target_property
(
_lib_rel
${
INF_ENGINE_TARGET
}
IMPORTED_LOCATION_RELEASE
)
set
(
_lib
"
${
_lib_rel
}
/
${
_lib_dbg
}
"
)
get_target_property
(
_lib_dbg
${
INF_ENGINE_TARGET
}
IMPORTED_LOCATION_DEBUG
)
endif
()
ocv_build_features_string
(
_lib
IF _lib THEN
"
${
_lib
}
"
IF _lib_imp_rel AND _lib_imp_dbg THEN
"
${
_lib_imp_rel
}
/
${
_lib_imp_dbg
}
"
IF _lib_rel AND _lib_dbg THEN
"
${
_lib_rel
}
/
${
_lib_dbg
}
"
ELSE
"unknown"
)
get_target_property
(
_inc
${
INF_ENGINE_TARGET
}
INTERFACE_INCLUDE_DIRECTORIES
)
get_target_property
(
_inc
${
INF_ENGINE_TARGET
}
INTERFACE_INCLUDE_DIRECTORIES
)
status
(
" Inference Engine:"
"
${
__msg
}
"
)
status
(
" Inference Engine:"
"
${
__msg
}
"
)
status
(
" libs:"
"
${
_lib
}
"
)
status
(
" libs:"
"
${
_lib
}
"
)
...
...
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