Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
6b980ac5
Commit
6b980ac5
authored
Feb 15, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: don't pass additional libraries as modules
parent
5d9808b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
CMakeLists.txt
modules/dnn/CMakeLists.txt
+2
-2
No files found.
modules/dnn/CMakeLists.txt
View file @
6b980ac5
...
...
@@ -4,7 +4,7 @@ endif()
set
(
the_description
"Deep neural network module. It allows to load models from different frameworks and to make forward pass"
)
ocv_add_module
(
dnn opencv_core opencv_imgproc
PRIVATE_REQUIRED
"
${
LAPACK_LIBRARIES
}
"
WRAP python matlab
)
ocv_add_module
(
dnn opencv_core opencv_imgproc WRAP python matlab
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wno-shadow -Wno-parentheses -Wmaybe-uninitialized -Wsign-promo
-Wmissing-declarations -Wmissing-prototypes
)
...
...
@@ -40,7 +40,7 @@ ocv_source_group("Src\\protobuf" FILES ${PROTOBUF_SRCS} ${PROTOBUF_HDRS})
ocv_module_include_directories
(
include
${
PROTOBUF_INCLUDE_DIR
}
)
ocv_glob_module_sources
(
${
PROTOBUF_SRCS
}
${
PROTOBUF_HDRS
}
${
CBLAS_H_PROXY_PATH
}
)
ocv_create_module
(
${
PROTOBUF_LIBRARIES
}
)
ocv_create_module
(
${
PROTOBUF_LIBRARIES
}
${
LAPACK_LIBRARIES
}
)
ocv_add_samples
()
ocv_add_accuracy_tests
()
ocv_add_perf_tests
()
...
...
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