Skip to content

Commit

Permalink
switched to c++ v20
Browse files Browse the repository at this point in the history
  • Loading branch information
DanPeled committed May 11, 2024
1 parent 315b0ea commit e711f42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MakeFile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ all: compile link
compile: $(OBJECTS)

%.o: %.cpp
g++ -c $< -o $@ -Ibox2d -Iimgui -Isrc
g++ -c $< -o $@ -Ibox2d -Iimgui -Isrc -std=c++20

link: $(OBJECTS)
g++ $^ -o main -lsfml-graphics -lsfml-window -lsfml-system -lGL -Ibox2d -Iimgui -Isrc
g++ $^ -o main -lsfml-graphics -lsfml-window -lsfml-system -lGL -Ibox2d -Iimgui -Isrc -std=c++20


clean:
Expand Down
Binary file modified main
Binary file not shown.

0 comments on commit e711f42

Please sign in to comment.