I’m trying to add a C++ object file in a jucer project:
Here is the line I’m currently using to add a C++ file:
<FILE id="BecAMR" name="FaustPluginProcessor.cpp" compile="1" resource="0" file="FaustPluginProcessor.cpp"/>
and the line to add the object file:
<FILE id="BecAMS" name="dynamic.o" compile="1" resource="0" file="dynamic.o"/>
Then the dynamic.o
file correctly appears in the Xcode project for instance, but is not actual linked in the final build. I have to do that again in Xcode.
I have tried to change the compile
or resource
flag without success.
So can object files be added in a jucer project ?