I've read that "The NassiShneiderman plugin has a dependency on the "Boost" library." In what sense is this true? Does it dynamically link to some of them? Or is it that it can generate code that uses them? I ask because the NassiShneiderman.dll Import Tables do not show any static references to them.
As you know, some of the boost libraries are header-only, so no linking is necessarily involved. From plugin's CParser.cpp:
#include <boost/spirit/include/classic.hpp>
#include <boost/spirit/include/classic_core.hpp>
#include <boost/spirit/include/classic_symbols.hpp>
#include <boost/spirit/include/classic_confix.hpp>
Quote from: Miguel Gimenez on November 11, 2022, 09:53:22 AM
As you know, some of the boost libraries are header-only, so no linking is necessarily involved. From plugin's CParser.cpp:
#include <boost/spirit/include/classic.hpp>
#include <boost/spirit/include/classic_core.hpp>
#include <boost/spirit/include/classic_symbols.hpp>
#include <boost/spirit/include/classic_confix.hpp>
Thanks, but no, I did not realize that.