-
Notifications
You must be signed in to change notification settings - Fork 13
Feature/add compilation scene #17
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
base: master
Are you sure you want to change the base?
Feature/add compilation scene #17
Conversation
Once #22 is merged we can omit the |
(aot dlls-dir namespaces))) | ||
|
||
(defn- file-namespace [file] | ||
(-> file (slurp :enc "utf-8") edn/read-string second symbol)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function assumes that the first statement of the file is (ns <namespace> ,,,)
. Maybe there's a more reliable way to find a file's namespace?
@selfsame I've updated this PR so that the |
I think this is a very nice addition in terms of developer / onboarding experience, any chance of getting this one merged @selfsame? |
This feature adds the ability to compile your clojure code using the Godot Headless Client. This way you don't manually have to compile your Clojure code from within the REPL, instead you can run the following command:
This also enables us to compile CLJ files from our CI/CD.