You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import nimx/naketools
# Your constants here ...
beforeBuild =proc(b: Builder) =
b.mainFile = mainFile
b.appName = appName
# ... etc...
There also doesn't seem to be a way to change what name the binary ends up as.
True, there's no way to adjust final executable name. It is either appName.* or main.* depending on target platform. What is the reason you want the binary name to be different?
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: