TL;DR
I get a build error when I try debugging my program. I press debug and Visual Studio 2010 asks me "Would you like to build it?" I press "Yes." Then it says "There were build errors, would you like to run the last successful build?" I click "Yes" again. Then it says "Unable to start program C:Users\admin\documents\visual studio 2010\Projects\HelloWorld\Debug\HelloWorld.exe The system cannot find the file specified"
The code is:
#include <FL/Fl.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_window.H>
int main()
{
Fl_Window window(200, 200,"Window title");
Fl_Box box(0,0,200,200,"Hey, I mean, Hello, World!");
window.show();
return Fl::run();
}
I keep getting that error. Is there a way to fix it? I can't seem to compile anything. My specs are: iMac 27'' Core i7 3.4 gHz 6970M 4GB DDR3 RAM 1TBHDD. Windows 7 Ultimate running in bootcamp using Visual Studio 2010 Ultimate SP1 as my IDE.

New Topic/Question
Reply



MultiQuote








|