Re-arrange for nimble, update to Nim 0.19.

This commit is contained in:
Mahlon E. Smith 2018-10-08 12:11:54 -07:00
parent 14eff18d54
commit b06edfff88
4 changed files with 63 additions and 44 deletions

View file

@ -1,11 +1,12 @@
FILES = stomp.nim
FILES = src/stomp.nim
CACHE = .cache
default: development
development: ${FILES}
nim --debugInfo --assertions:on --linedir:on -d:ssl --define:debug --nimcache:${CACHE} c ${FILES}
@mv src/stomp .
autobuild:
# find . -depth 1 -name \*.nim | entr -cp make
@ -16,6 +17,7 @@ debugger: ${FILES}
release: ${FILES}
nim -d:release --opt:speed --nimcache:${CACHE} c ${FILES}
@mv src/stomp .
docs:
nim doc ${FILES}