44 lines
No EOL
1.6 KiB
Nim
44 lines
No EOL
1.6 KiB
Nim
# Copyright (C) Dominik Picheta. All rights reserved.
|
|
# BSD License. Look at license.txt for more info.
|
|
|
|
## This module is implicitly imported in NimScript .nimble files.
|
|
|
|
var
|
|
packageName* = "" ## Set this to the package name. It
|
|
## is usually not required to do that, nims' filename is
|
|
## the default.
|
|
version*: string ## The package's version.
|
|
author*: string ## The package's author.
|
|
description*: string ## The package's description.
|
|
license*: string ## The package's license.
|
|
srcdir*: string ## The package's source directory.
|
|
binDir*: string ## The package's binary directory.
|
|
backend*: string ## The package's backend.
|
|
|
|
skipDirs*, skipFiles*, skipExt*, installDirs*, installFiles*,
|
|
installExt*, bin*: seq[string] = @[] ## Nimble metadata.
|
|
requiresData*: seq[string] = @[] ## The package's dependencies.
|
|
|
|
proc requires*(deps: varargs[string]) =
|
|
## Call this to set the list of requirements of your Nimble
|
|
## package.
|
|
for d in deps: requiresData.add(d)
|
|
|
|
template before*(action: untyped, body: untyped): untyped =
|
|
## Defines a block of code which is evaluated before ``action`` is executed.
|
|
proc `action Before`*(): bool =
|
|
result = true
|
|
body
|
|
|
|
template after*(action: untyped, body: untyped): untyped =
|
|
## Defines a block of code which is evaluated after ``action`` is executed.
|
|
proc `action After`*(): bool =
|
|
result = true
|
|
body
|
|
|
|
template builtin = discard
|
|
|
|
proc getPkgDir*(): string =
|
|
## Returns the package directory containing the .nimble file currently
|
|
## being evaluated.
|
|
builtin |