I currently am facing the following issue :
Using Cmake and nvcc, I am not able to force Cmake with nvcc to not use
--options-file <>/includes_CUDA.rsp
I am able to set it directly inside the CMakeLists.txt with
set(CMAKE_CUDA_USE_RESPONSE_FILE_FOR_INCLUDES 0)
But when I try to set it with presets or with -DCMAKE_CUDA_USE_RESPONSE_FILE_FOR_INCLUDES=0, the option is erased when the CUDA language is called in CUDA.
I did a reproduction repo : nvcc-cmake-options-file repo.
Why does this specific option is not usable on the command line or in presets ?
Thanks !