Projet d'initiation à l'ingénierie logicielle CMI Informatique L1
for more info see the wiki
make
./blokus
or you can do it manually if you have another compiler
g++ -Wall -g -O2 -std=c++11 -Wno-deprecated-declarations -lsfml-system -lsfml-window -lsfml-graphics -lsfml-audio
./blokus
download build.7z from the release folder
- this exact version of MinGW Builds 6.1.0 (64-bit)
- this exact version of MinGW Builds 6.1.0 (32-bit)
unzip the file then add MinGW/bin to paths if you have multiple compilers you will have to remove them from paths
- sfml files are included
-
use compileonwindows
-
to do it manually
mkdir build
g++ -Wall -g -I%cd%\include -c "%cd%\blokus.cc" -o build\blokus.o 2> compiling_error.txt
findstr "^" "compiling_error.txt" || del "compiling_error.txt"
g++ -L%cd%\include\lib -o "build\blokus.exe" build\blokus.o -lsfml-graphics -lsfml-window -lsfml-system -lsfml-audio -lsfml-network
copy %cd%\include\bin\*.dll %cd%\build
mkdir %cd%\build\res
xcopy /E %cd%\res %cd%\build\res
cd %cd%\build
blokus.exe