Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@mozilla.com>2012-11-09 21:42:59 +0400
committerRalph Giles <giles@mozilla.com>2012-11-09 23:58:26 +0400
commitc8231202b28baf455efecee3d51d529222660817 (patch)
tree3959d141e749b7f163465cd3c6a4d3ecba84f9b9
parent57fa05633f61574db681b5067272d2b386f886ea (diff)
Add the new source files to the MSVC projects.
Commits ae0e2ca8 and 6906210c split encode and decode support into separate files to help reduce the footprint of decode-only builds. This commit adds the new source files to the MSVC project files, fixing that build.
-rw-r--r--celt/celt.vcxproj4
-rw-r--r--celt/celt.vcxproj.filters8
-rw-r--r--src/opus.vcxproj2
-rw-r--r--src/opus.vcxproj.filters8
4 files changed, 19 insertions, 3 deletions
diff --git a/celt/celt.vcxproj b/celt/celt.vcxproj
index b44abc33..c2a8caf5 100644
--- a/celt/celt.vcxproj
+++ b/celt/celt.vcxproj
@@ -216,6 +216,8 @@
<ItemGroup>
<ClCompile Include="bands.c" />
<ClCompile Include="celt.c" />
+ <ClCompile Include="celt_decoder.c" />
+ <ClCompile Include="celt_encoder.c" />
<ClCompile Include="cwrs.c" />
<ClCompile Include="entcode.c" />
<ClCompile Include="entdec.c" />
@@ -234,4 +236,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
-</Project> \ No newline at end of file
+</Project>
diff --git a/celt/celt.vcxproj.filters b/celt/celt.vcxproj.filters
index 2773bae8..6de09545 100644
--- a/celt/celt.vcxproj.filters
+++ b/celt/celt.vcxproj.filters
@@ -95,6 +95,12 @@
<ClCompile Include="celt.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="celt_decoder.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="celt_encoder.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
<ClCompile Include="cwrs.c">
<Filter>Source Files</Filter>
</ClCompile>
@@ -138,4 +144,4 @@
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
-</Project> \ No newline at end of file
+</Project>
diff --git a/src/opus.vcxproj b/src/opus.vcxproj
index 47074084..c47c1ec3 100644
--- a/src/opus.vcxproj
+++ b/src/opus.vcxproj
@@ -198,6 +198,8 @@
<ClCompile Include="opus_decoder.c" />
<ClCompile Include="opus_encoder.c" />
<ClCompile Include="opus_multistream.c" />
+ <ClCompile Include="opus_multistream_decoder.c" />
+ <ClCompile Include="opus_multistream_encoder.c" />
<ClCompile Include="repacketizer.c" />
</ItemGroup>
<ItemGroup>
diff --git a/src/opus.vcxproj.filters b/src/opus.vcxproj.filters
index 93d7a095..90c4ed32 100644
--- a/src/opus.vcxproj.filters
+++ b/src/opus.vcxproj.filters
@@ -30,6 +30,12 @@
<ClCompile Include="opus_multistream.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="opus_multistream_decoder.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="opus_multistream_encoder.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
<ClCompile Include="analysis.c">
<Filter>Source Files</Filter>
</ClCompile>
@@ -87,4 +93,4 @@
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
-</Project> \ No newline at end of file
+</Project>