libvlc-sdk
libvlc-sdk copied to clipboard
Windows libs
- I suggest the following improvement to the
msvc.bat
set VC2013_DIR=C:\Program Files (x86)\Microsoft Visual Studio 12.0
call "%VC2013_DIR%\VC\vcvarsall.bat" x86_amd64
also it may be renamed to msvc2013.bat
2. I suggest the following improvement in the libvlc-sdk.pri
win32 {
## Windows common build here
!contains(QMAKE_TARGET.arch, x86_64) {
## Windows x86 (32bit) specific build here
LIBS += $$PWD/lib/msvc/libvlc.lib
} else {
## Windows x64 (64bit) specific build here
LIBS += $$PWD/lib/msvc/libvlc.x64.lib
}
} else ...
- why
libvlccore.lib
is created but is not used?
it's helper, you don't need it. Just use libvlc-sdk
directly.
- Then it will be better use
VS120COMNTOOLS
environment variable there. - You could make Pull Request
- It was intended for use in out-of-tree libvlc plugins (https://github.com/RSATom/vmem2 for example). It shouldn't be used in any other ways.