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/ragdoll
is the
projectdefitnion.txt
of your solution, i.e., the build config which links all modules together. You must useplugins/ragdoll/project/projectdefitnion.txt
instead, it is the build config for that module. Think of it as theCMakeLists.txt
of 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,../../foo
means afoo
folder in the root of your project.root foo plugins ragdoll
Cheers,
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.txt
file above, putting the command there won't work as I tried to explainAnd 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.