Browse Source

Added -Wall and -Wextra to example/Makefile

yhirose 8 years ago
parent
commit
3dded8c3e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      example/Makefile

+ 1 - 1
example/Makefile

@@ -1,6 +1,6 @@
 
 
 CC = clang++
 CC = clang++
-CFLAGS = -std=c++14 -I..
+CFLAGS = -std=c++14 -I.. -Wall -Wextra
 #OPENSSL_SUPPORT = -DCPPHTTPLIB_OPENSSL_SUPPORT -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib -lssl -lcrypto
 #OPENSSL_SUPPORT = -DCPPHTTPLIB_OPENSSL_SUPPORT -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib -lssl -lcrypto
 
 
 all: server client hello simplesvr benchmark
 all: server client hello simplesvr benchmark