-
Notifications
You must be signed in to change notification settings - Fork 17
NetBeans (7.3) C/C++ project generation #9
base: master
Are you sure you want to change the base?
Conversation
I've made a premake5 extension out of this code: https://bitbucket.org/premakeext/netbeans I cherry-picked your commits, to preserve your identity in the history. |
One more thought, since NetBeans is primarily a Java IDE, it might be a good starting point for adding Java language support to premake (via another extension). I've been interested in adding Java support, since I use premake for Android projects, which is a platform that also requires Java code. But I haven't had enough time. |
I've registered on bitbucket. Java Projects for Netbeans would actually be quite simple to generate, but I think that maven is way better for java, as it can also handle dependency management. |
By the way, not sure what premake extensions are.. are they added separately from the premake exe or is it just a way to name thirdparty extensions that are still bundled within the exe ? |
'extensions' is the direction starkos has gone with supporting minor/user extensions. They are to be kept apart (near) the exe, and loaded at runtime. |
It seems I'm a premake-ext admin actually, so I can add you as a member if you plan to spend time maintaining this extension (there is an upper limit to the number of team members for unpaid bitbicket accounts, so only if you plan to work on it). |
NetBeans is my fav. IDE, especially since its autocompletion and refactoring is better than Visual Studio's.
I've not seen a netbeans action for premake since I've started working with it, so I decided to write one myself.
This was written with NB 7.3 in mind. Not sure how compatible this would be to older versions.
This creates c/c++ project files for static libs, shared libs and executables.
I'm new to this, so I might have done something horribly wrong, forgive me if I did.
Known issues / Notes:
Let me know if you have other problems.