forked from opencv/opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't build CUDA modules stubs by default (use `-DBUILD_CUDA_STUBS=ON…
…` if need them)
- Loading branch information
Andrey Pavlenko
committed
Jun 16, 2014
1 parent
45f21e4
commit 724f5e7
Showing
11 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cuda) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cudaarithm) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cudabgsegm) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cudafeatures2d) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cudafilters) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cudaimgproc) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cudaoptflow) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cudastereo) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
if(IOS) | ||
if(IOS OR (NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS)) | ||
ocv_module_disable(cudawarping) | ||
endif() | ||
|
||
|