This commit is contained in:
2019-11-20 19:10:35 +01:00
commit b8cdce07af
6 changed files with 2010 additions and 0 deletions

20
mttt.nimble Normal file
View File

@@ -0,0 +1,20 @@
# Package
version = "0.1.0"
author = "luxick"
description = "Meta Tic Tac Toe"
license = "GPL-2.0"
srcDir = "src"
bin = @["mttt"]
backend = "js"
# Dependencies
requires "nim >= 1.0.0"
task debug, "Compile debug client":
exec "nim js --out:public/mttt.js -d:local mttt.nim"
task release, "Compile release client":
exec "nim js --out:public/mttt.js mttt.nim"