Hello!
I’m trying to create my own dll with my cuda project. I have did it well with a basic C++ project but since i’m adding a .cu file with cuda build rule on the dll project, this doesn’t work anymore…
The error : LNK2019 : unresolved external symbol “function_name”
Here is the files :
dll_use : uses dll_test (#pragma comment(lib,“dll_test.lib”))
dll_test : the dll project
Must I compile the C++ part and the cuda part separately?
Thanks for any answer :)