There should already be a make file. Compile by typing:
make -f Makefile_bp
The binary will be at bin/raytracer
If there is no make file:
cd src
/usr/lib/qt4/bin/qmake -unix -o Makefile_bp src.pro
cd ..
/usr/lib/qt4/bin/qmake -unix -o Makefile_bp raytracer.pro
make -f Makefile_bp
Go into the qt4/mingw command line. There should already be a make file. Compile by typing:
make -f Makefile_win
The binary will be at src/bin/raytracer.exe
If there is no make file:
cd src
qmake -win -o Makefile_win src.pro
cd ..
/usr/lib/qt4/bin/qmake -win -o Makefile_win raytracer.pro
make -f Makefile_win
1.5.3