aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/cuda_dependency.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-01-07 19:32:34 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-01-07 22:12:25 +0200
commit8d576eba9190f311e845f08ce822972b34c4e973 (patch)
treed7add41a3b2d463f89be86577f3ba8503663f521 /docs/markdown/snippets/cuda_dependency.md
parenta1d2444e4aac7df1a7f5d36246f64ea0564d38a4 (diff)
downloadmeson-8d576eba9190f311e845f08ce822972b34c4e973.zip
meson-8d576eba9190f311e845f08ce822972b34c4e973.tar.gz
meson-8d576eba9190f311e845f08ce822972b34c4e973.tar.bz2
Prepare new release.0.53.0
Diffstat (limited to 'docs/markdown/snippets/cuda_dependency.md')
-rw-r--r--docs/markdown/snippets/cuda_dependency.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/docs/markdown/snippets/cuda_dependency.md b/docs/markdown/snippets/cuda_dependency.md
deleted file mode 100644
index 1cc9ae6..0000000
--- a/docs/markdown/snippets/cuda_dependency.md
+++ /dev/null
@@ -1,11 +0,0 @@
-## CUDA dependency
-
-Native support for compiling and linking against the CUDA Toolkit using
-the `dependency` function:
-
-```meson
-project('CUDA test', 'cpp', meson_version: '>= 0.53.0')
-exe = executable('prog', 'prog.cc', dependencies: dependency('cuda'))
-```
-
-See [the CUDA dependency](Dependencies.md#cuda) for more information.