1
0
forked from 0ad/0ad

Update precompiled win32 libogg to 1.3.3 and libvorbis to 1.3.6, building them with VS2015, refs #5379.

Use the default naming for both libraries (libvorbis instead of vorbis),
and use our default suffix for debug versions of the libs.

This was SVN commit r22406.
This commit is contained in:
Nicolas Auvray 2019-06-27 22:36:04 +00:00
parent 8babfe2330
commit 6cde90104a
2 changed files with 4 additions and 5 deletions

View File

@ -618,10 +618,9 @@ extern_lib_defs = {
})
end
add_default_links({
win_names = { "vorbisfile" },
win_names = { "libvorbisfile" },
unix_names = { "vorbisfile" },
osx_names = { "vorbis", "vorbisenc", "vorbisfile", "ogg" },
dbg_suffix = "_d",
})
end,
},

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2010 Wildfire Games.
/* Copyright (C) 2019 Wildfire Games.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
@ -31,9 +31,9 @@
#if MSC_VERSION
# ifdef NDEBUG
# pragma comment(lib, "vorbisfile.lib")
# pragma comment(lib, "libvorbisfile.lib")
# else
# pragma comment(lib, "vorbisfile_d.lib")
# pragma comment(lib, "libvorbisfiled.lib")
# endif
#endif