Displaying 3 results from an estimated 3 matches for "m_van".
Did you mean:
__va
2023 Jun 07
1
How to change the dynamic library project name ogg to libogg?
...ARED_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>:
>
> On 06/06/23 02:33 AM, m b wrote:
> > Hi,
> >
> > I...
2023 Jun 07
1
How to change the dynamic library project name ogg to libogg?
...gt; 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/xiph/ogg/pull/72
(Vorbis equivalent: https://github.com/xiph/vorbis/pull/76)
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.
>
>