Files
randopix/randopix.nimble
2020-06-02 00:23:07 +02:00

22 lines
658 B
Nim

import strformat
# Package
version = "0.1.0"
author = "luxick"
description = "Play an image slide show from different sources"
license = "GPL-2.0"
srcDir = "src"
bin = @["randopix", "pixctrl"]
# Dependencies
requires "nim >= 1.0.0", "gintro >= 0.5.5", "argparse >=0.10.1", "jester"
task genJS, "Generate the Javascript client":
exec "nim js --out:src/resources/script.js src/pixscript.nim"
task debug, "Compile debug version":
exec "nim c -d:debug --debugger:native --out:randopix src/randopix.nim"
task release, "Compile release version":
exec fmt"nim c -d:release --out:randopix-{version} src/randopix.nim"