I am over the linker error problem (Thanks Cliff, Wayne) but I still cannot run and compile this circle program. Help me please!!!
Code:
#include "winbgim.h"
int main()
{
initwindow(640,480); //open a 640x480 graphics window
setcolor(WHITE);
circle(320,240,100); //Draw a circle
getch(); //wait for user to press a key
closegraph(); //close graphics window
return 0;
}
Compile log:
Compiler: Default compiler
Building Makefile: "C:\DonPrograms\Makefile.win"
Executing make...
make.exe -f "C:\DonPrograms\Makefile.win" all
g++.exe -c MyCircle/main.cpp -o MyCircle/main.o -I"C:/Dev-Cpp/include"
'C:\DOCUME~1\DON' is not recognized as an internal or external command,
operable program or batch file.
The system cannot find the path specified.
make.exe: *** [MyCircle/main.o] Error 1
Execution terminated
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I had the same problem and solved it by first uninstalling and then install again. When i installed the second time i moved the setup program from my documents to the folder i was going to install it to.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am over the linker error problem (Thanks Cliff, Wayne) but I still cannot run and compile this circle program. Help me please!!!
Code:
#include "winbgim.h"
int main()
{
initwindow(640,480); //open a 640x480 graphics window
setcolor(WHITE);
circle(320,240,100); //Draw a circle
getch(); //wait for user to press a key
closegraph(); //close graphics window
return 0;
}
Compile log:
Compiler: Default compiler
Building Makefile: "C:\DonPrograms\Makefile.win"
Executing make...
make.exe -f "C:\DonPrograms\Makefile.win" all
g++.exe -c MyCircle/main.cpp -o MyCircle/main.o -I"C:/Dev-Cpp/include"
'C:\DOCUME~1\DON' is not recognized as an internal or external command,
operable program or batch file.
The system cannot find the path specified.
make.exe: *** [MyCircle/main.o] Error 1
Execution terminated
I had the same problem and solved it by first uninstalling and then install again. When i installed the second time i moved the setup program from my documents to the folder i was going to install it to.