12345678910111213141516171819202122232425262728293031 |
- top = '.'
- out = 'build'
- def options(opt):
- opt.load('compiler_cxx')
- def configure(conf):
- conf.load('compiler_cxx')
-
-
-
-
- conf.load('cuda', tooldir='.')
- def build(bld):
- t = bld.program(
- source = 'test.cu main.cpp',
- target = 'app',
- use = 'CUDA CUDART')
-
-
-
|