summaryrefslogtreecommitdiff
path: root/tests/test_opus_api.vcxproj
Commit message (Collapse)AuthorAgeFilesLines
* Remove MSVC incremental linking directives.Ralph Giles2012-12-031-6/+0
| | | | | | | | | This avoids linker errors with VS2010 of the form failure during conversion to COFF: invalid file or corrupt [c:\users\giles\opus\source\opus_demo.vcxproj] The problem does not occur if the project files are updated to build under VS2012.
* Fix line endings on MSVC project files.Ralph Giles2012-11-091-87/+87
| | | | | | | | | | | | These files has unix line endings, while the other project files have dos line endings. I hoped this would fix the link error about corrupt or invalid files with these projects, but it doesn't. Running 'Update project files...' in the VS2012 IDE is a work around, but it just adds a <PlatformToolset> element to each <PropertyGroup> and a line ending at the end of the file.
* Fix MSVC linker warningsJoshua Bowman2012-10-231-0/+1
| | | | | | | | Specify the correct debug runtime libraries for the test and demo executables to prevent mismatch warnings with the default runtime. Signed-off-by: Ralph Giles <giles@mozilla.com>
* Make MSVC build work in parallel.Gian-Carlo Pascutto2012-07-161-3/+2
| | | | | | | | The (non-default) temporary & output dirs configured in the projects could cause issues when doing compilation on a multiprocessor machine. Cleaned this up a little to use the defaults, which makes that work again and doesn't make the output structure any worse. Also removed debug output for release binaries & a tiny whitespace fix.
* Fix MSVC Debug builds, set missing dependencies for tests.Gian-Carlo Pascutto2012-07-131-1/+3
|
* Make tests work on MSVC.Gian-Carlo Pascutto2012-07-121-0/+85
Add project files for Opus tests, fixup test source for Win32.