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
29e7eb77
Commit
29e7eb77
authored
Mar 06, 2015
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3789 from StevenPuttemans:fix_cmakelist_annotation
parents
2c57717c
cdbb661e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
CMakeLists.txt
apps/annotation/CMakeLists.txt
+6
-5
No files found.
apps/annotation/CMakeLists.txt
View file @
29e7eb77
SET
(
deps
opencv_core opencv_highgui opencv_imgproc
)
ocv_check_dependencies
(
${
deps
}
)
SET
(
OPENCV_ANNOTATION_DEPS
opencv_core opencv_highgui opencv_imgproc
)
ocv_check_dependencies
(
${
OPENCV_ANNOTATION_DEPS
}
)
if
(
NOT OCV_DEPENDENCIES_FOUND
)
return
()
...
...
@@ -8,12 +8,13 @@ endif()
project
(
annotation
)
ocv_include_directories
(
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
"
${
OpenCV_SOURCE_DIR
}
/include/opencv"
)
ocv_include_modules
(
${
deps
}
)
ocv_include_modules
(
${
OPENCV_ANNOTATION_DEPS
}
)
set
(
annotation_files opencv_annotation.cpp
)
set
(
the_target opencv_annotation
)
add_executable
(
${
the_target
}
opencv_annotation.cpp
)
target_link_libraries
(
${
the_target
}
${
deps
}
)
add_executable
(
${
the_target
}
${
annotation_files
}
)
target_link_libraries
(
${
the_target
}
${
OPENCV_ANNOTATION_DEPS
}
)
set_target_properties
(
${
the_target
}
PROPERTIES
DEBUG_POSTFIX
"
${
OPENCV_DEBUG_POSTFIX
}
"
...
...
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