-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation for NimX is unclear. #499
Comments
Here's how it should look like: import nimx/naketools
# Your constants here ...
beforeBuild = proc(b: Builder) =
b.mainFile = mainFile
b.appName = appName
# ... etc...
True, there's no way to adjust final executable name. It is either |
A bit late because i forgor💀, but because why not? There's no reason not to be able to have the name of the resulting executable not be customizable. |
You don't have to use naketools then. Just use |
I cannot seem to find a solution to changing some of the attributes of "Builder".
I'm trying to do it like this after looking through the code:
But, as expected, this doesn't work and I'm met with a
SIGSEGV
error.There also doesn't seem to be a way to change what name the binary ends up as.
The text was updated successfully, but these errors were encountered: