mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
13 lines
280 B
Makefile
13 lines
280 B
Makefile
CXX ?= g++
|
|
CXXFLAGS = -D_WIN32_WINNT=0x600 -march=native -Wall -Wextra -Wshadow -pedantic -std=c++11 -pthread -Wl,--no-as-needed -I../include
|
|
|
|
all: %.cpp
|
|
$(CXX) $^ -o tests $(CXXFLAGS) $(CXX_RELEASE_FLAGS)
|
|
clean:
|
|
rm -f tests *.o logs/*
|
|
|
|
rebuild: clean all
|
|
|
|
|
|
|