Move dead submodules in-tree
Signed-off-by: swurl <swurl@swurl.xyz>
This commit is contained in:
parent
c0cceff365
commit
6c655321e6
4081 changed files with 1185566 additions and 45 deletions
21
externals/simpleini/tests/Makefile
vendored
Normal file
21
externals/simpleini/tests/Makefile
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
CXX?=g++
|
||||
CXXFLAGS+=-Wall -std=c++14 `pkg-config --cflags gtest_main`
|
||||
LDFLAGS+=`pkg-config --libs gtest_main`
|
||||
|
||||
OBJS=ts-roundtrip.o ts-snippets.o ts-utf8.o ts-bugfix.o ts-quotes.o ts-noconvert.o
|
||||
|
||||
BIN=./tests
|
||||
|
||||
all: $(BIN)
|
||||
|
||||
$(BIN): $(OBJS)
|
||||
$(CXX) -o $(BIN) $(OBJS) $(LDFLAGS)
|
||||
|
||||
clean:
|
||||
rm -f core $(OBJS) $(BIN)
|
||||
|
||||
test: $(BIN)
|
||||
$(BIN)
|
||||
|
||||
$(OBJS): ../SimpleIni.h
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue