Iniital scaffolding commit.
FossilOrigin-Name: 879068412740cd5f7da23bf35a547ba7a7182370b5e9b555f22c30c007d3ebc5
This commit is contained in:
parent
11fd1b1673
commit
0313f1681a
5 changed files with 149 additions and 0 deletions
25
Makefile
Normal file
25
Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
|
||||
FILES = sieb.nim
|
||||
|
||||
default: release
|
||||
|
||||
autobuild:
|
||||
find . -type f -iname \*.nim | entr -c make development
|
||||
|
||||
development: ${FILES}
|
||||
# can use gdb with this...
|
||||
nim --debugInfo --assertions:on --linedir:on -d:testing -d:nimTypeNames --nimcache:.cache c ${FILES}
|
||||
|
||||
debugger: ${FILES}
|
||||
nim --debugger:on --nimcache:.cache c ${FILES}
|
||||
|
||||
release: ${FILES}
|
||||
nim -d:release -d:nimDebugDlOpen --opt:speed --parallelBuild:0 --nimcache:.cache c ${FILES}
|
||||
|
||||
docs:
|
||||
nim doc ${FILES}
|
||||
#nim buildIndex ${FILES}
|
||||
|
||||
clean:
|
||||
fossil clean -f
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue