Hi, can you help me to remove this error? I created new project
A configured dependencies as so:
opengl32.lib;glu32.lib;olepro32.lib;%(AdditionalDependencies);C:\Program Files\Microsoft SDKs\Windows\v7.0A\Include\gl;
Also it looks like you are mixing c++ up with c++/cli or c# maybe with this line: usingnamespace System; since AFAIK c++ does not have the System namespace unless you made one or gl has one . Though c++/cli and c# have the system namespace but..they don't have the same syntax. Actually c++/cli has the same syntax I think but I am not positive I haven't ever used it but I know I have never heard of the System namespace is standard c++. But I thought c++/cli had something like System::Console::Writeline("hello, world");
Thanks for your answer. When I have started new Console project, the Visual Studio created the namespace system and I left it there. I fixed the error. I think it was because I hade the directory there. This is correct:
Yes, there was created this line: System::Console::Writeline("hello, world");
I had to changed it. I dont know why it was created managed code instead unmanaged!