I am an absolute noob when it comes to CMake and have been stuck on this problem for the last three days. The OptiX application I am working on reads in a .ptx file compiled from a .cu file. I am struggling to get the file to be compiled into the same directory as the .exe is.
I didn't set up the CMake file so I am trying to adapt the SDK examples. The .exe get's compiled into bin/release/ or bin/debug without a problem.
I want the .ptx to be compiled to bin/release/ptx or bin/debug/ptx depending on the build mode in VS. Is there a variable which lets me access the bin/release bin/debug paths? Best I could do is ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} which get's me the bin/ folder. (If it helps, a pastebin of the root CMakeLists.txt, line 252:
set(SAMPLES_PTX_DIR "${CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE}")
Thank you for help, I hope I could make myself clear enough!