Skip to content

Instantly share code, notes, and snippets.

@dom96

dom96/bug.nimble Secret

Created May 27, 2019 20:01
Show Gist options
  • Save dom96/5a86d44218edd56828cdcbe90713e36e to your computer and use it in GitHub Desktop.
Save dom96/5a86d44218edd56828cdcbe90713e36e to your computer and use it in GitHub Desktop.
# Package
version = "0.1.0"
author = "Dominik Picheta"
description = "G"
license = "proprietary"
# Dependencies
requires "nim >= 0.19.0"
task client, "Build JS sources":
exec "nim js --out:out/client.js client.nim"
task clientr, "Build JS sources":
exec "nim js -d:release --out:out/client.js client.nim"
task server, "Builds the server":
exec "nim c -d:nimTypeNames -d:futureLogging server"
task servertui, "Builds the server":
exec "nim c -d:TUI -d:nimTypeNames -d:futureLogging server"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment