From 757541a18eb22e1186520fc0b92798b1ca6e2ee1 Mon Sep 17 00:00:00 2001 From: Armin Burgmeier Date: Thu, 22 Oct 2009 22:31:55 +0200 Subject: Added new files to MSVC projects 2009-10-22 Armin Burgmeier * MSVC_Net2005/giomm/giomm.vcproj: * MSVC_Net2005/glibmm/glibmm.vcproj: * MSVC_Net2008/giomm/giomm.vcproj: * MSVC_Net2008/glibmm/glibmm.vcproj: Added new files in 2.22 to the projects. * MSVC_Net2005/examples/keyfile/keyfile.vcproj: * MSVC_Net2005/examples/properties/properties.vcproj: * MSVC_Net2005/examples/regex/regex.vcproj: * MSVC_Net2008/examples/keyfile/keyfile.vcproj: * MSVC_Net2008/examples/properties/properties.vcproj: * MSVC_Net2008/examples/regex/regex.vcproj: Added projects for these examples. * MSVC_Net2005/glibmm.sln: * MSVC_Net2008/glibmm.sln: * MSVC_Net2005/filelist.am: * MSVC_Net2008/filelist.am: Added the new projects. --- ChangeLog | 21 ++ MSVC_Net2005/examples/keyfile/keyfile.vcproj | 213 +++++++++++++++++++++ MSVC_Net2005/examples/properties/properties.vcproj | 213 +++++++++++++++++++++ MSVC_Net2005/examples/regex/regex.vcproj | 213 +++++++++++++++++++++ MSVC_Net2005/filelist.am | 5 +- MSVC_Net2005/giomm/giomm.vcproj | 16 ++ MSVC_Net2005/glibmm.sln | 27 +++ MSVC_Net2005/glibmm/glibmm.vcproj | 8 + MSVC_Net2008/examples/keyfile/keyfile.vcproj | 212 ++++++++++++++++++++ MSVC_Net2008/examples/properties/properties.vcproj | 212 ++++++++++++++++++++ MSVC_Net2008/examples/regex/regex.vcproj | 212 ++++++++++++++++++++ MSVC_Net2008/filelist.am | 5 +- MSVC_Net2008/giomm/giomm.vcproj | 16 ++ MSVC_Net2008/glibmm.sln | 27 +++ MSVC_Net2008/glibmm/glibmm.vcproj | 8 + 15 files changed, 1406 insertions(+), 2 deletions(-) create mode 100644 MSVC_Net2005/examples/keyfile/keyfile.vcproj create mode 100644 MSVC_Net2005/examples/properties/properties.vcproj create mode 100644 MSVC_Net2005/examples/regex/regex.vcproj create mode 100644 MSVC_Net2008/examples/keyfile/keyfile.vcproj create mode 100644 MSVC_Net2008/examples/properties/properties.vcproj create mode 100644 MSVC_Net2008/examples/regex/regex.vcproj diff --git a/ChangeLog b/ChangeLog index 09562495..e6adc305 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +2009-10-22 Armin Burgmeier + + * MSVC_Net2005/giomm/giomm.vcproj: + * MSVC_Net2005/glibmm/glibmm.vcproj: + * MSVC_Net2008/giomm/giomm.vcproj: + * MSVC_Net2008/glibmm/glibmm.vcproj: Added new files in 2.22 to the + projects. + + * MSVC_Net2005/examples/keyfile/keyfile.vcproj: + * MSVC_Net2005/examples/properties/properties.vcproj: + * MSVC_Net2005/examples/regex/regex.vcproj: + * MSVC_Net2008/examples/keyfile/keyfile.vcproj: + * MSVC_Net2008/examples/properties/properties.vcproj: + * MSVC_Net2008/examples/regex/regex.vcproj: Added projects for these + examples. + + * MSVC_Net2005/glibmm.sln: + * MSVC_Net2008/glibmm.sln: + * MSVC_Net2005/filelist.am: + * MSVC_Net2008/filelist.am: Added the new projects. + 2009-09-21 Jonathon Jongsma * NEWS: diff --git a/MSVC_Net2005/examples/keyfile/keyfile.vcproj b/MSVC_Net2005/examples/keyfile/keyfile.vcproj new file mode 100644 index 00000000..63997d82 --- /dev/null +++ b/MSVC_Net2005/examples/keyfile/keyfile.vcproj @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MSVC_Net2005/examples/properties/properties.vcproj b/MSVC_Net2005/examples/properties/properties.vcproj new file mode 100644 index 00000000..0adba76d --- /dev/null +++ b/MSVC_Net2005/examples/properties/properties.vcproj @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MSVC_Net2005/examples/regex/regex.vcproj b/MSVC_Net2005/examples/regex/regex.vcproj new file mode 100644 index 00000000..1509bb13 --- /dev/null +++ b/MSVC_Net2005/examples/regex/regex.vcproj @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MSVC_Net2005/filelist.am b/MSVC_Net2005/filelist.am index 0e18c155..c1708c36 100644 --- a/MSVC_Net2005/filelist.am +++ b/MSVC_Net2005/filelist.am @@ -17,4 +17,7 @@ msvc_net2005_data = \ examples/markup/markup.vcproj \ examples/options/options.vcproj \ examples/thread/thread.vcproj \ - examples/thread_pool/thread_pool.vcproj + examples/thread_pool/thread_pool.vcproj \ + examples/keyfile/keyfile.vcproj \ + examples/properties/properties.vcproj \ + examples/regex/regex.vcproj diff --git a/MSVC_Net2005/giomm/giomm.vcproj b/MSVC_Net2005/giomm/giomm.vcproj index 66711c89..a5726af2 100644 --- a/MSVC_Net2005/giomm/giomm.vcproj +++ b/MSVC_Net2005/giomm/giomm.vcproj @@ -258,6 +258,10 @@ RelativePath="..\..\gio\giomm\fileinputstream.cc" > + + @@ -290,6 +294,10 @@ RelativePath="..\..\gio\giomm\inputstream.cc" > + + @@ -424,6 +432,10 @@ RelativePath="..\..\gio\giomm\fileinputstream.h" > + + @@ -456,6 +468,10 @@ RelativePath="..\..\gio\giomm\inputstream.h" > + + diff --git a/MSVC_Net2005/glibmm.sln b/MSVC_Net2005/glibmm.sln index 8120b96c..80372a21 100755 --- a/MSVC_Net2005/glibmm.sln +++ b/MSVC_Net2005/glibmm.sln @@ -49,7 +49,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "giomm-2.4", "giomm\giomm.vc EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tests_giomm_simple", "tests\giomm_simple\giomm_simple.vcproj", "{F4F66980-51D4-4CC2-A529-9AD2C9F7D143}" ProjectSection(ProjectDependencies) = postProject + {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} = {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} {EE6C0430-C2C9-425C-8EBA-963FAC3E9832} = {EE6C0430-C2C9-425C-8EBA-963FAC3E9832} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_keyfile", "examples\keyfile\keyfile.vcproj", "{FA6C9A26-5192-4C19-9527-64DF5C31E2DA}" + ProjectSection(ProjectDependencies) = postProject + {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} = {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_properties", "examples\properties\properties.vcproj", "{F3CC33A1-C933-4AF2-A05C-4ECE8E41F691}" + ProjectSection(ProjectDependencies) = postProject + {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} = {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_regex", "examples\regex\regex.vcproj", "{9C375338-4B27-452F-A3C5-4122D06E6AE3}" + ProjectSection(ProjectDependencies) = postProject {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} = {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} EndProjectSection EndProject @@ -103,6 +118,18 @@ Global {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Debug|Win32.Build.0 = Debug|Win32 {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Release|Win32.ActiveCfg = Release|Win32 {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Release|Win32.Build.0 = Release|Win32 + {FA6C9A26-5192-4C19-9527-64DF5C31E2DA}.Debug|Win32.ActiveCfg = Debug|Win32 + {FA6C9A26-5192-4C19-9527-64DF5C31E2DA}.Debug|Win32.Build.0 = Debug|Win32 + {FA6C9A26-5192-4C19-9527-64DF5C31E2DA}.Release|Win32.ActiveCfg = Release|Win32 + {FA6C9A26-5192-4C19-9527-64DF5C31E2DA}.Release|Win32.Build.0 = Release|Win32 + {F3CC33A1-C933-4AF2-A05C-4ECE8E41F691}.Debug|Win32.ActiveCfg = Debug|Win32 + {F3CC33A1-C933-4AF2-A05C-4ECE8E41F691}.Debug|Win32.Build.0 = Debug|Win32 + {F3CC33A1-C933-4AF2-A05C-4ECE8E41F691}.Release|Win32.ActiveCfg = Release|Win32 + {F3CC33A1-C933-4AF2-A05C-4ECE8E41F691}.Release|Win32.Build.0 = Release|Win32 + {9C375338-4B27-452F-A3C5-4122D06E6AE3}.Debug|Win32.ActiveCfg = Debug|Win32 + {9C375338-4B27-452F-A3C5-4122D06E6AE3}.Debug|Win32.Build.0 = Debug|Win32 + {9C375338-4B27-452F-A3C5-4122D06E6AE3}.Release|Win32.ActiveCfg = Release|Win32 + {9C375338-4B27-452F-A3C5-4122D06E6AE3}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MSVC_Net2005/glibmm/glibmm.vcproj b/MSVC_Net2005/glibmm/glibmm.vcproj index 31278c48..20a7dbda 100755 --- a/MSVC_Net2005/glibmm/glibmm.vcproj +++ b/MSVC_Net2005/glibmm/glibmm.vcproj @@ -386,6 +386,10 @@ RelativePath="..\..\glib\glibmm\value_custom.cc" > + + @@ -628,6 +632,10 @@ RelativePath="..\..\glib\glibmm\value_custom.h" > + + diff --git a/MSVC_Net2008/examples/keyfile/keyfile.vcproj b/MSVC_Net2008/examples/keyfile/keyfile.vcproj new file mode 100644 index 00000000..444d6eea --- /dev/null +++ b/MSVC_Net2008/examples/keyfile/keyfile.vcproj @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MSVC_Net2008/examples/properties/properties.vcproj b/MSVC_Net2008/examples/properties/properties.vcproj new file mode 100644 index 00000000..0d0d16a3 --- /dev/null +++ b/MSVC_Net2008/examples/properties/properties.vcproj @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MSVC_Net2008/examples/regex/regex.vcproj b/MSVC_Net2008/examples/regex/regex.vcproj new file mode 100644 index 00000000..c47dccfa --- /dev/null +++ b/MSVC_Net2008/examples/regex/regex.vcproj @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MSVC_Net2008/filelist.am b/MSVC_Net2008/filelist.am index 54ff8144..154bac63 100644 --- a/MSVC_Net2008/filelist.am +++ b/MSVC_Net2008/filelist.am @@ -16,4 +16,7 @@ msvc_net2008_data = \ examples/markup/markup.vcproj \ examples/options/options.vcproj \ examples/thread/thread.vcproj \ - examples/thread_pool/thread_pool.vcproj + examples/thread_pool/thread_pool.vcproj \ + examples/keyfile/keyfile.vcproj \ + examples/properties/properties.vcproj \ + examples/regex/regex.vcproj diff --git a/MSVC_Net2008/giomm/giomm.vcproj b/MSVC_Net2008/giomm/giomm.vcproj index fbcc948a..6a59ef56 100644 --- a/MSVC_Net2008/giomm/giomm.vcproj +++ b/MSVC_Net2008/giomm/giomm.vcproj @@ -257,6 +257,10 @@ RelativePath="..\..\gio\giomm\fileinputstream.cc" > + + @@ -289,6 +293,10 @@ RelativePath="..\..\gio\giomm\inputstream.cc" > + + @@ -423,6 +431,10 @@ RelativePath="..\..\gio\giomm\fileinputstream.h" > + + @@ -455,6 +467,10 @@ RelativePath="..\..\gio\giomm\inputstream.h" > + + diff --git a/MSVC_Net2008/glibmm.sln b/MSVC_Net2008/glibmm.sln index 4cecba69..cfc52e88 100644 --- a/MSVC_Net2008/glibmm.sln +++ b/MSVC_Net2008/glibmm.sln @@ -53,6 +53,21 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tests_giomm_simple", "tests {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} = {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} EndProjectSection EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_keyfile", "examples\keyfile\keyfile.vcproj", "{569A24AB-8D81-4427-B40D-85485AA7F3CD}" + ProjectSection(ProjectDependencies) = postProject + {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} = {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_properties", "examples\properties\properties.vcproj", "{206CC821-8BE3-4455-B09E-63F93E30F20C}" + ProjectSection(ProjectDependencies) = postProject + {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} = {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_regex", "examples\regex\regex.vcproj", "{7374A5A1-4E74-44BD-918C-FDF80B97FA3F}" + ProjectSection(ProjectDependencies) = postProject + {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} = {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 @@ -103,6 +118,18 @@ Global {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Debug|Win32.Build.0 = Debug|Win32 {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Release|Win32.ActiveCfg = Release|Win32 {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Release|Win32.Build.0 = Release|Win32 + {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Debug|Win32.ActiveCfg = Debug|Win32 + {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Debug|Win32.Build.0 = Debug|Win32 + {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Release|Win32.ActiveCfg = Release|Win32 + {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Release|Win32.Build.0 = Release|Win32 + {206CC821-8BE3-4455-B09E-63F93E30F20C}.Debug|Win32.ActiveCfg = Debug|Win32 + {206CC821-8BE3-4455-B09E-63F93E30F20C}.Debug|Win32.Build.0 = Debug|Win32 + {206CC821-8BE3-4455-B09E-63F93E30F20C}.Release|Win32.ActiveCfg = Release|Win32 + {206CC821-8BE3-4455-B09E-63F93E30F20C}.Release|Win32.Build.0 = Release|Win32 + {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Debug|Win32.ActiveCfg = Debug|Win32 + {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Debug|Win32.Build.0 = Debug|Win32 + {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Release|Win32.ActiveCfg = Release|Win32 + {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MSVC_Net2008/glibmm/glibmm.vcproj b/MSVC_Net2008/glibmm/glibmm.vcproj index ab3306d2..a25f2cf3 100644 --- a/MSVC_Net2008/glibmm/glibmm.vcproj +++ b/MSVC_Net2008/glibmm/glibmm.vcproj @@ -385,6 +385,10 @@ RelativePath="..\..\glib\glibmm\value_custom.cc" > + + @@ -627,6 +631,10 @@ RelativePath="..\..\glib\glibmm\value_custom.h" > + + -- cgit v1.2.1