mirror of
https://github.com/gabime/spdlog.git
synced 2025-10-02 11:29:01 +08:00
Added unit tests (catch based)
This commit is contained in:
12
tests/Makefile
Normal file
12
tests/Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user