Couldn't Find Main Entry Point (48::72) after trying to use third party library.
Hello!
Currently trying to build my first plugin. Right now I've been working on it within the Queuebert example plugin in the latest SDK. (March 2021). I haven't changed anything outside of Queuebert.cpp.
My plugin gathers info like composition names and lengths and I wanted to upload this to a database so I planned on using the Mongocxx drivers for MongoDB.
I added the two include statements at the top of my file.
#include "QueueBert.h"
#include <mongocxx/client.hpp>
#include <mongocxx/instance.hpp> I also added in one line within the plugin itself.
if (command == S_queuebert_cmd) {
mongocxx::instance inst{};After adding this one line above, I now get the Couldn't Find Main Entry Point (48::72) for my plugin.
I'm not expecting anyone to be familiar with MongoDB, but I'm unsure why this would cause this error in the first place. The plugin builds successfully and this code shouldn't get called until I click on the Menu item, so I don't see why code in this part of the program should produce this error anyways.
If anyone has a possible solution, insight, or advice, please let me know!
