Skip to content

Commit a9cbfa0

Browse files
committed
first version
1 parent 145064c commit a9cbfa0

File tree

6 files changed

+23
-0
lines changed

6 files changed

+23
-0
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
all: compile link run clean
2+
3+
compile:
4+
g++ -c main.cpp -o release/main.o -I"C:\Users\zahir\Documents\libraries\SFML-2.6.1\include" -DSFML_STATIC -DSFML_AUDIO_STATIC -DSFML_GRAPHICS_STATIC -DSFML_WINDOW_STATIC -DSFML_SYSTEM_STATIC -DSFML_NETWORK_STATIC
5+
6+
link:
7+
g++ release/main.o -o release/main.exe -L"C:\Users\zahir\Documents\libraries\SFML-2.6.1\lib" -lsfml-graphics-s -lsfml-window-s -lsfml-audio-s -lsfml-system-s -lopengl32 -lwinmm -lgdi32 -lfreetype -ljpeg -lopenal32 -lopenal32 -lflac -lvorbisenc -lvorbisfile -lvorbis -logg -lws2_32 -static-libgcc -static-libstdc++
8+
9+
run:
10+
release/main.exe
11+
12+
clean:
13+
del release/main.o
14+
del release/main.exe

main.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "view/Game.cpp"
2+
3+
int main(int, char **)
4+
{
5+
Game game;
6+
game.run();
7+
8+
return 0;
9+
}

release/consoleSolver.exe

2.95 MB
Binary file not shown.

release/main.exe

6.38 MB
Binary file not shown.

release/main.o

532 KB
Binary file not shown.

release/openal32.dll

654 KB
Binary file not shown.

0 commit comments

Comments
 (0)