I succeeded in compiling a visual studio 2022 DLL project with google test sources. (See Building google test as a DLL in Visual Studio 2022 linking errors for more details.)
For now, no lib files is generated as I don’t export any functions/classes, of course I need to export at least functions I need related to test case, fixtures and parametrised tests, but after a close look, doing it “linearly” (meaning, __declspec(dllexport)
ing each needed class/function) seems a daunting task. Is there a smart way to do this ? (As it is after all not really proper to googletest.)