how can you add items to CLion's New Project window
I'm trying to add CLion support to the D Language plugin but can't seem to add an option for creating a D project.
Please sign in to leave a comment.
I'm trying to add CLion support to the D Language plugin but can't seem to add an option for creating a D project.
Please sign in to leave a comment.
You need to register a custom extension id with "directoryProjectGenerator" and base class "com.intellij.platform.DirectoryProjectGenerator"
thanks Anton, that's got me started. Can that be used in all products? We didn't use that class for creating projects in Intellij IDEA. For that we just used a
also, it'd be great if I can group together a couple of options for D projects in the same way that the C++ and C stuff is. How does that work?
DirectoryProjectGenerator is available in all non-Java IDEs, while ModuleBuilder is in IntelliJ IDEA only