Skip to content

Commit 7b8817b

Browse files
committed
Enforce C++17
1 parent d7941da commit 7b8817b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ OBJ_NAME = img2x16
77

88
#This is the target
99
all: $(OBJS)
10-
g++ $(OBJS) -w -O2 -o ./bin/$(OBJ_NAME)
10+
g++ $(OBJS) -w -O2 -std=c++17 -o $(OBJ_NAME)
1111

1212
clean:
13-
rm -f ./bin/$(OBJ_NAME)
13+
rm -f $(OBJ_NAME)

0 commit comments

Comments
 (0)