add example_cpp_decode_file

This commit is contained in:
Josh Coalson
2007-09-12 05:35:12 +00:00
parent 0af1527d46
commit 1b21c25c4f
3 changed files with 33 additions and 2 deletions

View File

@@ -206,6 +206,9 @@ Package=<4>
Begin Project Dependency Begin Project Dependency
Project_Dep_Name example_c_decode_file Project_Dep_Name example_c_decode_file
End Project Dependency End Project Dependency
Begin Project Dependency
Project_Dep_Name example_cpp_decode_file
End Project Dependency
}}} }}}
############################################################################### ###############################################################################
@@ -225,6 +228,24 @@ Package=<4>
############################################################################### ###############################################################################
Project: "example_cpp_decode_file"=.\examples\cpp\decode\file\example_cpp_decode_file.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
Begin Project Dependency
Project_Dep_Name libFLAC++_static
End Project Dependency
Begin Project Dependency
Project_Dep_Name libFLAC_static
End Project Dependency
}}}
###############################################################################
Project: "flac"=.\src\flac\flac.dsp - Package Owner=<4> Project: "flac"=.\src\flac\flac.dsp - Package Owner=<4>
Package=<5> Package=<5>

View File

@@ -6,6 +6,12 @@ Project("{4cefbc7c-c215-11db-8314-0800200c9a66}") = "example_c_decode_file", "ex
{4cefbc84-c215-11db-8314-0800200c9a66} = {4cefbc84-c215-11db-8314-0800200c9a66} {4cefbc84-c215-11db-8314-0800200c9a66} = {4cefbc84-c215-11db-8314-0800200c9a66}
EndProjectSection EndProjectSection
EndProject EndProject
Project("{4cefbc7c-c215-11db-8314-0800200c9a66}") = "example_cpp_decode_file", "example\cpp\decode\file\example_cpp_decode_file.vcproj", "{4cefbe00-c215-11db-8314-0800200c9a66}"
ProjectSection(ProjectDependencies) = postProject
{4cefbc84-c215-11db-8314-0800200c9a66} = {4cefbc84-c215-11db-8314-0800200c9a66}
{4cefbc86-c215-11db-8314-0800200c9a66} = {4cefbc84-c215-11db-8314-0800200c9a66}
EndProjectSection
EndProject
Project("{4cefbc7c-c215-11db-8314-0800200c9a66}") = "flac", "src\flac\flac.vcproj", "{4cefbc7d-c215-11db-8314-0800200c9a66}" Project("{4cefbc7c-c215-11db-8314-0800200c9a66}") = "flac", "src\flac\flac.vcproj", "{4cefbc7d-c215-11db-8314-0800200c9a66}"
ProjectSection(ProjectDependencies) = postProject ProjectSection(ProjectDependencies) = postProject
{4cefbc81-c215-11db-8314-0800200c9a66} = {4cefbc81-c215-11db-8314-0800200c9a66} {4cefbc81-c215-11db-8314-0800200c9a66} = {4cefbc81-c215-11db-8314-0800200c9a66}

View File

@@ -15,8 +15,8 @@
# restrictive of those mentioned above. See the file COPYING.Xiph in this # restrictive of those mentioned above. See the file COPYING.Xiph in this
# distribution. # distribution.
.PHONY: all example_c_decode_file .PHONY: all example_c_decode_file example_cpp_decode_file
all: example_c_decode_file all: example_c_decode_file example_cpp_decode_file
DEFAULT_CONFIG = release DEFAULT_CONFIG = release
@@ -33,5 +33,9 @@ release : all
example_c_decode_file: example_c_decode_file:
(cd c/decode/file && $(MAKE) -f Makefile.lite $(CONFIG)) (cd c/decode/file && $(MAKE) -f Makefile.lite $(CONFIG))
example_cpp_decode_file:
(cd cpp/decode/file && $(MAKE) -f Makefile.lite $(CONFIG))
clean: clean:
-(cd c/decode/file && $(MAKE) -f Makefile.lite clean) -(cd c/decode/file && $(MAKE) -f Makefile.lite clean)
-(cd cpp/decode/file && $(MAKE) -f Makefile.lite clean)