geekrelief / gdnim

godot-nim based bootstrapping framework supporting hot reloading
Other
55 stars 4 forks source link

Clean install, `nim c build` needs compiler package #12

Closed geekrelief closed 3 years ago

geekrelief commented 3 years ago

Fix nimble install compiler before nim c build, include compiler into deps, or rewrite build script with nimble, or move task genapi to a different file.

geekrelief commented 3 years ago

Can't do a full rewrite using nimscript because generating the godot api requires libraries not accessible to nimscript. Moving the genapi task to a separate file that gets compiled as a separate executable is the easiest option that doesn't require extra steps by the user.

geekrelief commented 3 years ago

Fixed by d5f1532