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.

0
3 comments

You need to register a custom extension id with "directoryProjectGenerator" and base class "com.intellij.platform.DirectoryProjectGenerator"

0

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 

com.intellij.ide.util.projectWizard.ModuleBuilder

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?

0

DirectoryProjectGenerator is available in all non-Java IDEs, while ModuleBuilder is in IntelliJ IDEA only

0

Please sign in to leave a comment.