Hi,
I have started to write an exporter for QtCreator. To begin with, I just used the Makefile exporter as a basis. My exporter is already partly working, means I can add it in the Introjucer and by saving I get a .pro project file with a list of sources, headers and config details.
The funny thing is that the list of sources does not include all the JUCE modules related .cpp files. I use the same findAllFilesToCompile() function as in the Makefile exporter. By debugging I could find out that there also is a JuceLibrayCode group in the QtCreator exporter, but it only contains some headers and the BinaryData.cpp.
The new exporter was registered in the createNewExporter() and createExporter() functions from the ProjectExporter class. Is there any other place I have to add it?
Sebastian