C + VS + CUDA

I have project in VS 2005 that is writen on C. How can I add cuda file to this project?

decision:

http://forums.nvidia.com/index.php?showtop…p;#entry1008976

You can use cmake to link the cuda libraries to your project (cmake 2.6.3 or higher is recommended), and also to add your .cu files. In my experience cmake is the best way to include cuda files to my projects.

You can download the latest version of cmake from:

[post=“0”]cmake[/post]

DarkTerror

For Easy, you can add add CUDA Build Rules to Visual Studio. It is given in the post

[post=“0”]> cuda.rules ? Where it is ?[/post]

After that Open the VS project. Right Click on the Project in Solution Explorer and select Custom Build Rules… Select the CUDA Build Rule and Click OK. Now you can add the .cu file to the project. ie, Right Click on the Project in Solution Explorer and select Add, Select Existing Item and select .cu File and Click add.