summaryrefslogtreecommitdiff
path: root/xmake/toolchains/cuda/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-05-19 22:43:07 +0800
committerruki <[email protected]>2020-05-19 10:18:46 +0800
commit5ae55ab1f4233bd5a5f065a07763c1192b91341c (patch)
treed819c7f436cce9896c96a7a5a0ae15b9606688da /xmake/toolchains/cuda/xmake.lua
parent40f43fdf131b55639a8149a021394106eb8aef34 (diff)
add cuda toolchain
Diffstat (limited to 'xmake/toolchains/cuda/xmake.lua')
-rw-r--r--xmake/toolchains/cuda/xmake.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/xmake/toolchains/cuda/xmake.lua b/xmake/toolchains/cuda/xmake.lua
new file mode 100644
index 000000000..884851581
--- /dev/null
+++ b/xmake/toolchains/cuda/xmake.lua
@@ -0,0 +1,28 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015-2020, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file xmake.lua
+--
+
+-- define toolchain
+toolchain("cuda")
+
+ -- set toolsets
+ set_toolsets("cu", "nvcc", "clang")
+ set_toolsets("culd", "nvcc")
+ set_toolsets("cu-ccbin", "$(env CXX)", "$(env CC)", "clang", "gcc")
+