-
Notifications
You must be signed in to change notification settings - Fork 10
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
does not install on linux #3
Comments
Changed. This compiles on osx but has not been tested on linux. c2ad19c |
there is still something wrong. Basis installs as basis but BasisAndroid expects Basis and not basis as dependency. I can fix this, when I rename the haxe/lib/basis folder to Basis. Then I run ant install in BasisAndroid. This installs basisAndroid, but the build scripts require again BasisAndroid not basisAndroid. Again I can fix this when I rename haxe/lib/basisAndroid to haxe/lib/BasisAndroid. haxelib run Basis build.basis android |
The "B" in the build tool also needed to be lowercase. I've updated the tools in each target. 30eff60 |
when I run ant install in BasisAndroid I still get this error: Error: Library Basis is not installed : run 'haxelib install Basis' |
changed -lib Basis to -lib basis build.hxml of BasisAndroid. now everything works |
Great. Thanks for going through all that. |
because path names are sometimes camelCase and sometimes PascalCase:
haxelib install Basis - creates lib/basis
haxelib install BasisAndroid - create lib/basisAndroid
ant install has similar problems.
best would be to rename Basis to basis and BasisAndroid to basisAndroid
The text was updated successfully, but these errors were encountered: