Skip to content

Hotfix/cudev cmake interface #3890

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: 4.x
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix python build: avoid link to opencv_core
  • Loading branch information
braindevices committed Feb 22, 2025
commit 9d717fb9d74aedf35e99dc8be649b9577fd90bcf
4 changes: 2 additions & 2 deletions modules/cudev/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ if(ENABLE_CUDA_FIRST_CLASS_LANGUAGE)

endif()

ocv_add_module(cudev opencv_core ${extra_dependencies} OPTIONAL ${optional_dependencies} WRAP python)
ocv_add_module(cudev ${extra_dependencies} OPTIONAL ${optional_dependencies} WRAP python)

ocv_module_include_directories()
ocv_module_include_directories(opencv_core)
ocv_glob_module_sources()
ocv_create_module()

Expand Down
Loading