<div dir="ltr">On Tue, 10 Jul 2018 at 09:57, J. Caleb Wherry <<a href="mailto:calebwherry@gmail.com">calebwherry@gmail.com</a>> wrote:<br>> Side note 1: Things like this eventually lead me to have a post process (a python script) on all my VS project files to “fix” any issues like this.<br><br>It might interest you to know that I've worked around it a bit by tweaking the IMPORT_PREFIX property: <br><br>    set_target_properties(<br>        ${modname_dll}<br>        PROPERTIES<br>        OUTPUT_NAME<br>            ${module_name}<br>        # Required to work around the fact that we rename our shared libraries<br>        # to have the same name as our static libraries, so when Visual Studio's<br>        # linker tries to create an export library, it clashes with an input<br>        # library.<br>        IMPORT_PREFIX<br>            "import_"<br>    )<div><br></div><div>Cheers,</div><div>Jason</div></div>