move DeletableSingleton to its own folder
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@547 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
b9ac41218c
commit
5a8e9c06f4
7 changed files with 27 additions and 93 deletions
10
test/DeletableSingleton/Makefile
Executable file
10
test/DeletableSingleton/Makefile
Executable file
|
@ -0,0 +1,10 @@
|
|||
BIN = DeletableSingleton
|
||||
CXXFLAGS = -Wall -Wold-style-cast -Wundef -Wsign-compare -Wconversion -Wpointer-arith -pedantic -O2
|
||||
CPPFLAGS = -I../../include -DNDEBUG
|
||||
LDFLAGS = -L../../lib
|
||||
LDLIBS = -lloki
|
||||
|
||||
.PHONY: build clean
|
||||
build: $(BIN)
|
||||
clean:
|
||||
rm -f $(BIN) $(BIN).exe $(BIN).o
|
10
test/DeletableSingleton/make.msvc.bat
Executable file
10
test/DeletableSingleton/make.msvc.bat
Executable file
|
@ -0,0 +1,10 @@
|
|||
|
||||
:: DeletableSingleton.cpp
|
||||
|
||||
cl -c -Zm200 -O2 -DNDEBUG -MT -EHsc -GR -W0 -wd4710 -I"." -I"..\..\include" DeletableSingleton.cpp
|
||||
|
||||
link /NOLOGO /SUBSYSTEM:CONSOLE /incremental:no /OUT:"DeletableSingleton-msvc.exe" ..\..\lib\loki.lib DeletableSingleton.obj
|
||||
|
||||
|
||||
del *.obj
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue