Visual C++ - Linking plugin DLL against EXE?

后端 未结 4 1320
甜味超标
甜味超标 2021-02-04 13:34

I\'m in the process of porting a large C++ application from Linux (gcc) to Windows (Visual C++ 2008) and am having linker issues with plugins. On Linux this wasn\'t an issue, as

4条回答
  •  耶瑟儿~
    2021-02-04 13:55

    As 1800 INFORMATION says, don't do it like that. Move Object out of the executable and into a "third" DLL. Link the plugins and the executable against that.

提交回复
热议问题