Initial commit.
This commit is contained in:
commit
b9a8c5b53b
4 changed files with 887 additions and 0 deletions
26
Makefile
Normal file
26
Makefile
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
FILES = stomp.nim
|
||||
CACHE = .cache
|
||||
|
||||
default: development
|
||||
|
||||
development: ${FILES}
|
||||
nim --debugInfo --assertions:on --linedir:on -d:ssl --define:debug --nimcache:${CACHE} c ${FILES}
|
||||
|
||||
autobuild:
|
||||
# find . -depth 1 -name \*.nim | entr -cp make
|
||||
echo ${FILES} | entr -c make
|
||||
|
||||
debugger: ${FILES}
|
||||
nim --debugger:on --nimcache:${CACHE} c ${FILES}
|
||||
|
||||
release: ${FILES}
|
||||
nim -d:release --opt:speed --nimcache:${CACHE} c ${FILES}
|
||||
|
||||
docs:
|
||||
nim doc ${FILES}
|
||||
#nim buildIndex ${FILES}
|
||||
|
||||
clean:
|
||||
cat .hgignore | xargs rm -rf
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue