添加 SkipList Sbt 等样例, 完善了输出的属性列表

This commit is contained in:
huangsimin
2019-08-28 18:11:51 +08:00
parent c032a243d8
commit f235eb4f63
5 changed files with 117 additions and 52 deletions

View File

@@ -1,5 +1,5 @@
CC := g++
C_FLAGS := -std=c++17 -Wall -Wextra -g -O2
C_FLAGS := -std=c++17 -Wall -Wextra -g -O2 -Wno-unused-parameter -Wno-unused-function
BIN := bin
SRC := src
@@ -23,4 +23,4 @@ run: all
./$(BIN)/$(EXECUTABLE)
$(BIN)/$(EXECUTABLE): $(SRC)/*
$(CC) $(C_FLAGS) -I$(INCLUDE) -L$(LIB) $^ -o $@ $(LIBRARIES)
$(CC) $(C_FLAGS) -I$(INCLUDE) -L$(LIB) $^ -o $@ $(LIBRARIES)