summaryrefslogtreecommitdiff
path: root/tests/projects/cuda/console_2/xmake.lua
blob: d2571269eaf359faef247e40d3ccfd61b277005a (plain)
1
2
3
4
5
6
7
8
9
10
add_rules("mode.debug", "mode.release")

-- generate PTX code for the virtual architecture to guarantee compatibility
add_cugencodes("compute_35")

target("bin")
    set_kind("binary")
    add_cuflags("-rdc=true")
    add_includedirs("inc")
    add_files("src/*.cu")