Copy link to clipboard
Copied
Hi guys, I developing an adobe after effects plugins recently, thanks for everyone who help me during that time. Now when everything goes ok and I want to build it on a release version, I got the following error:
Here is my release setting:
what did I missing? however it runs ok on debug version.
1 Correct answer
Hi,
I found the solution for the release configuration:
trun on the Linker/Debugging , then set Generate Debug Info-->Optimize for debugging (?DEBUG)
thanks at all
Copy link to clipboard
Copied
Hi,
you can check (for project AND associated .cpp files):
C/C++ preprocessor /
preprocessor definition
and replace _DEBUG by NDEBUG
(Not sure about the exact names for 'preprocessor and preprocessor definition, I use a french version...)
Cheers,
Francois
Copy link to clipboard
Copied
Thank you , Is it setting on Debug configuration? I can build sussesful on Debug configuration, but I still get the error on Release configuration.
Copy link to clipboard
Copied
Hi,
I found the solution for the release configuration:
trun on the Linker/Debugging , then set Generate Debug Info-->Optimize for debugging (?DEBUG)
thanks at all
Copy link to clipboard
Copied
Oh, I didn't know we could tell visual studio to do it for us. Cool! 😉

