nimqml/examples/resourcebundling/resourcebundling.nimble
2016-03-28 10:54:02 +02:00

19 lines
331 B
Nim

# Package
version = "0.1.0"
author = "Filippo Cucchetto"
description = "resourcebundling"
license = "MIT"
bin = @["main"]
# Dependencies
requires @["nim >= 0.12.1", "nimqml >= 0.5.0"]
task build, "Compile the binary":
exec ("nim c main")
before build:
exec ("rcc --binary resources.qrc -o main.rcc")