search for: lnk4070

Displaying 3 results from an estimated 3 matches for "lnk4070".

Did you mean: lnk4075
2023 Jun 07
1
How to change the dynamic library project name ogg to libogg?
...EFIX "lib") set(CMAKE_SHARED_LIBRARY_PREFIX "lib") set(CMAKE_SHARED_MODULE_PREFIX "lib") set(CMAKE_STATIC_LIBRARY_PREFIX "lib") set(CMAKE_FIND_LIBRARY_PREFIXES "lib" "") When I do that, I still get the same warning: libogg.exp : warning LNK4070: /OUT:ogg.dll directive in .EXP differs from output filename 'C:\Users\m_van\flac\build\objs\Release\libogg.dll'; ignoring directive So, apparently either CMake or MSVC is forgetting to rename something, somewhere. Op wo 7 jun 2023 om 05:11 schreef Dave Yeo <dave.r.yeo at gmail.com>...
2023 Jun 07
1
How to change the dynamic library project name ogg to libogg?
...HARED_LIBRARY_PREFIX "lib") > set(CMAKE_SHARED_MODULE_PREFIX "lib") > set(CMAKE_STATIC_LIBRARY_PREFIX "lib") > set(CMAKE_FIND_LIBRARY_PREFIXES "lib" "") > > When I do that, I still get the same warning: > > libogg.exp : warning LNK4070: /OUT:ogg.dll directive in .EXP differs > from output filename > 'C:\Users\m_van\flac\build\objs\Release\libogg.dll'; ignoring > directive > > So, apparently either CMake or MSVC is forgetting to rename something, > somewhere. Does this help at all? https://github.com/xip...
2023 Jun 07
1
How to change the dynamic library project name ogg to libogg?
On 06/06/23 02:33 AM, m b wrote: > Hi, > > I use CMake to generate FLAC dynamic link library projects for Visual > Studio, in the CMake user interface window, the "BUILD_SHARED_LIBS" is > enabled. The CMake generates the FLAC and ogg dynamic library projects. > The Visual Studio builds the FLAC.dll and ogg.dll, and the FLAC.dll > depends on ogg.dll. > >