nake icon indicating copy to clipboard operation
nake copied to clipboard

Describe your Nim builds as tasks

Results 14 nake issues
Sort by recently updated
recently updated
newest added

/cc @yglukhov @fowlmouth see also https://forum.nim-lang.org/t/4042#25152: (quit considered evil: bypasses `defer` and `try/catch/finally` which might do important cleanups) eg in $nim_D/nimx/nimx/naketools.nim it prevents doing things like: ```nim try: direShell "xcodebuild",...

Building complex projects often requires libraries that may not be found in Nim's stdlib. Currently there is no good way (known to me) to use external libraries from nakefile -...

Looking at the logic of #23 the code performs the nakefile check like: ``` nimrod binaryTime = toSeconds(getLastModificationTime("nakefile")) ``` This doesn't include the `exe` extension for the windows binary, so...

Usually I like to use `make` like this: ```bash make && ./a.out ``` Where if the compilation fails, it will not run `a.out`. I tried doing this with `nake`, e.g.:...