Macros
macro setupDepFile(filename: static[string]): untyped
-
Setup dependency file to be bundled into executable
filename is a file to bundle during compile time and write back at runtime. Path should be relative to project directory during compile time and will be relative to executable location at runtime.
macro setupDepFiles(filenames: static[seq[string]]): untyped
-
Setup list of dependency files to be bundled into executable
filenames is an array of files to bundle during compile time and write back at runtime.
macro setupDepDirs(dirs: static[seq[string]]): untyped
-
Setup directories of dependency files to be bundled into executable
dirs is an array of directories to bundle during compile time and write back at runtime.
macro setupDeps(fdirs: static[seq[string]]): untyped
-
Setup list of directories and files to be bundled into executable
fdirs is an array of directories and files to bundle during compile time and write back at runtime.
Templates
template setupDepDir(dir: untyped): untyped
-
Setup directory of dependency files to be bundled into executable
dir is a directory to bundle during compile time and write back at runtime. Path should be relative to project directory during compile time and will be relative to executable location at runtime.