Plugin does not appear in Expression on client's Cinema 4D
-
This:
Platform=Win64;OSX Type=Solution Solution=\ plugins/cinema4dsdk;\ plugins/maxonsdk.module;\ plugins/microsdk;\ plugins/ragdollis the
projectdefitnion.txtof your solution, i.e., the build config which links all modules together. You must useplugins/ragdoll/project/projectdefitnion.txtinstead, it is the build config for that module. Think of it as theCMakeLists.txtof that module when you are familiar with CMake. After these changes you must regenerate your project with the project tool.I quite frankly do not understand your solution, but as always, whatever works, works. So, if it does work for you, I am happy.
The
".."in paths is common relative path syntax and means one folder up (in relation to the module). So,../../foomeans afoofolder in the root of your project.root foo plugins ragdollCheers,
Ferdinand -
I know what is projectdefitnion.txt. I just do not understand how to use the line: AdditionalLibraryDirectories.Win64.Debug =../../curl

And do I need to launch again the buildsdk23.bat right after each time I change this file.
I have not added the static curl library in my project yet. -
Well, you apparently do not, because you showed us the wrong
projectdefitnion.txtfile above, putting the command there won't work as I tried to explain
And yes, you must regen your project after such changes, which I assume is what you mean with buildsdk23.bat. -
Oh, you've edited your previous message! Thanks! I will try it.