monolithium 1.2.0

Finding the Largest Minecraft Alpha Monoliths
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
project('cudalith', 'cpp')

custom_target('cudalith',
    build_by_default: true,
    input:  'monolithium/main.cu',
    output: 'cudalith',
    command: [
        find_program('nvcc', required: true),
        '-arch=native', '-O3',
        '@INPUT@', '-o', '@OUTPUT@',
    ]
)