More specifically, we want to use abseil-cpp header files in a cuda file. The rest of the source files get the abseil headers fine from the subroject, but I can't find a way to pass the include directory to the custom target we use to run nvcc. I did hack around the issue passing '-I', meson.source_root() + '/subprojects/abseil-cpp-20211102.0' to nvcc, but was wondering whether there is a clean way to do it.
More specifically, we want to use abseil-cpp header files in a cuda file. The rest of the source files get the abseil headers fine from the subroject, but I can't find a way to pass the include directory to the custom target we use to run nvcc. I did hack around the issue passing
'-I', meson.source_root() + '/subprojects/abseil-cpp-20211102.0'
to nvcc, but was wondering whether there is a clean way to do it.