diff --git a/build/msvc_2k5/README b/build/msvc_2k5/README deleted file mode 100644 index b6dc50a41..000000000 --- a/build/msvc_2k5/README +++ /dev/null @@ -1,62 +0,0 @@ - -INTRODUCTION -============ -Clutter is an open source software library for creating fast, visually rich and animated -graphical user interfaces. For more information see http://clutter-project.org - - -BUILDING CLUTTER -================ -Currently only building with MSVC is supported (please feel free to contribute a different -build system. - -To build clutter, you will need runtime + dev libraries and headers for: - -glib & co. ----------- -glib, gobject, gmodule, gdk pixbuf, freetype, fontconfig, pango, pangoft2, gettext, iconv, -expat, these can be found at Tor Lillqvist's site, http://www.gimp.org/~tml/gimp/win32/. -The simplest way to install the runtimes is probably to install Gimp (http://gimp.org), but -the dev packages you will need to install by hand (not forgetting to tell your MSVC where -to look for the includes and libs). - -In addition to the libs, you will also need glib-genmarshal and glib-mkenums programs, -both of which come with the glib developement packages, but make sure that the releveant -bin directory is added to your MSVC path; glib-mkenums is a perl script, so you will also -need perl installed in MSVC path. Unfortunately, due to the severe limitations of the -cmd.exe shell, I have ended up hardcoding the location of glib-mkmenus to the custom build -rules for clutter-enum-types.c.in and clutter-enum-types.h.in, so you will need to edit -those to match your install (if you can come up with a better way of doing this, patches -are, of course, welcome). - -SDL ---- -The windows port uses sdl backend; you can get the necessary files from http://libsdl.org/ -(or feel free to write a different backend). - -GLee ----- -Believe it or not, windows in 2007 only supports OpenGL 1.1 specification (which is a -decade old). Glee is a library by Ben Woodhouse, which wraps the OpenGL extension API -and eliminates the need to load any post 1.1 OpenGL functions (up to standard 2.2) as -extensions; you can get it from http://elf-stone.com/glee.php. - -Known Issues -============ - -* Could not include clutter-marshal.h: no such a file or directory -- this sometimes happens -for reasons unknown. clutter-marshal.h is generated from the clutter-marshal.list; compiling -clutter-marshal.list twice in succession usually fixes this. - -* test-perspective: -There are some issues with the SDL backend running in fullscreen mode (it does not work). - -* test-offscreen: -Offscreen rendering is currently not supported by the SDL backend; feel free to fix this. - -* test-textures: -Does not work; unsure of the causes. - -Bugs -==== -Please report bugs, submit patches, etc., to http://bugzilla.o-hand.com/ diff --git a/build/msvc_2k5/clutter-version.h b/build/msvc_2k5/clutter-version.h deleted file mode 100644 index 6e7b69c44..000000000 --- a/build/msvc_2k5/clutter-version.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef __CLUTTER_VERSION_H__ -#define __CLUTTER_VERSION_H__ - -/* Version info, needs to be set for each release - * NB: this file lives in the msvc project directory, not - * the clutter root !!! - */ -#define CLUTTER_MAJOR_VERSION 0 -#define CLUTTER_MINOR_VERSION 6 -#define CLUTTER_MICRO_VERSION 0 -#define CLUTTER_VERSION 0.6.0 -#define CLUTTER_VERSION_S "0.6.0" - -#define CLUTTER_FLAVOUR "sdl" -#define CLUTTER_COGL "gl" - -/* The rest needs no modificactions */ - -#define CLUTTER_VERSION_HEX ((CLUTTER_MAJOR_VERSION << 24) | \ - (CLUTTER_MINOR_VERSION << 16) | \ - (CLUTTER_MICRO_VERSION << 8)) -#define CLUTTER_CHECK_VERSION(major,minor,micro) \ - (CLUTTER_MAJOR_VERSION > (major) || \ - (CLUTTER_MAJOR_VERSION == (major) && CLUTTER_MINOR_VERSION > (minor)) || \ - (CLUTTER_MAJOR_VERSION == (major) && CLUTTER_MINOR_VERSION == (minor) && CLUTTER_MICRO_VERSION >= (micro))) - -#endif /* __CLUTTER_VERSION_H__ */ diff --git a/build/msvc_2k5/clutter.sln b/build/msvc_2k5/clutter.sln deleted file mode 100644 index 17d83d888..000000000 --- a/build/msvc_2k5/clutter.sln +++ /dev/null @@ -1,131 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual C++ Express 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clutter", "clutter.vcproj", "{84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-behave", "test-behave.vcproj", "{21B366B4-1FFE-433B-AFE2-4D32FFCF8B1B}" - ProjectSection(ProjectDependencies) = postProject - {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E} = {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-actors", "test-actors.vcproj", "{E21E35F4-C066-4518-939E-D07064F99E7A}" - ProjectSection(ProjectDependencies) = postProject - {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E} = {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-scale", "test-scale.vcproj", "{5F3D08CA-C15F-4FE6-9386-056F79A66164}" - ProjectSection(ProjectDependencies) = postProject - {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E} = {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-text", "test-text.vcproj", "{823840F0-34AA-4ED4-B361-1A208C5FEFD4}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-project", "test-project.vcproj", "{43EB7AC1-45F9-45A3-9C1E-BF6A91CD878A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-entry", "test-entry.vcproj", "{6D96E4D8-32C3-4B5E-803F-3F10E034312A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-perspective", "test-perspective.vcproj", "{9C8637C0-AF4C-42B8-A3CE-F4F8CA3DC0EA}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-boxes", "test-boxes.vcproj", "{9137DD4C-14F0-4570-95D6-3A776C57B77F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-depth", "test-depth.vcproj", "{0C053F1D-954A-45BA-88F6-15B76DDC4B68}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-events", "test-events.vcproj", "{1FFA8E34-3012-4C96-BC6B-B4EB0D5445E6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-offscreen", "test-offscreen.vcproj", "{B662224F-3155-4D11-844C-AA1628994DB5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-rotate", "test-rotate.vcproj", "{19C0D22A-05BA-4B40-8D58-B2D013AEF48B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-score", "test-score.vcproj", "{D5499ECD-B2E9-4790-B8C5-DBA2240FDB40}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-script", "test-script.vcproj", "{9D2F4B49-85B8-4A8E-9CB6-610624EA2194}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-textures", "test-textures.vcproj", "{616A80B9-8CD4-4ADF-B39B-23107326F663}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-threads", "test-threads.vcproj", "{589E1F92-248D-485D-B9FB-E1C6161801C0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test-timeline", "test-timeline.vcproj", "{62835DE2-B950-4049-A947-5DB6080E7396}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E}.Debug|Win32.ActiveCfg = Debug|Win32 - {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E}.Debug|Win32.Build.0 = Debug|Win32 - {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E}.Release|Win32.ActiveCfg = Release|Win32 - {84FDDB4F-95DF-4C21-AA77-7BC3B067CC0E}.Release|Win32.Build.0 = Release|Win32 - {21B366B4-1FFE-433B-AFE2-4D32FFCF8B1B}.Debug|Win32.ActiveCfg = Debug|Win32 - {21B366B4-1FFE-433B-AFE2-4D32FFCF8B1B}.Debug|Win32.Build.0 = Debug|Win32 - {21B366B4-1FFE-433B-AFE2-4D32FFCF8B1B}.Release|Win32.ActiveCfg = Release|Win32 - {21B366B4-1FFE-433B-AFE2-4D32FFCF8B1B}.Release|Win32.Build.0 = Release|Win32 - {E21E35F4-C066-4518-939E-D07064F99E7A}.Debug|Win32.ActiveCfg = Debug|Win32 - {E21E35F4-C066-4518-939E-D07064F99E7A}.Debug|Win32.Build.0 = Debug|Win32 - {E21E35F4-C066-4518-939E-D07064F99E7A}.Release|Win32.ActiveCfg = Release|Win32 - {E21E35F4-C066-4518-939E-D07064F99E7A}.Release|Win32.Build.0 = Release|Win32 - {5F3D08CA-C15F-4FE6-9386-056F79A66164}.Debug|Win32.ActiveCfg = Debug|Win32 - {5F3D08CA-C15F-4FE6-9386-056F79A66164}.Debug|Win32.Build.0 = Debug|Win32 - {5F3D08CA-C15F-4FE6-9386-056F79A66164}.Release|Win32.ActiveCfg = Release|Win32 - {5F3D08CA-C15F-4FE6-9386-056F79A66164}.Release|Win32.Build.0 = Release|Win32 - {823840F0-34AA-4ED4-B361-1A208C5FEFD4}.Debug|Win32.ActiveCfg = Debug|Win32 - {823840F0-34AA-4ED4-B361-1A208C5FEFD4}.Debug|Win32.Build.0 = Debug|Win32 - {823840F0-34AA-4ED4-B361-1A208C5FEFD4}.Release|Win32.ActiveCfg = Release|Win32 - {823840F0-34AA-4ED4-B361-1A208C5FEFD4}.Release|Win32.Build.0 = Release|Win32 - {43EB7AC1-45F9-45A3-9C1E-BF6A91CD878A}.Debug|Win32.ActiveCfg = Debug|Win32 - {43EB7AC1-45F9-45A3-9C1E-BF6A91CD878A}.Debug|Win32.Build.0 = Debug|Win32 - {43EB7AC1-45F9-45A3-9C1E-BF6A91CD878A}.Release|Win32.ActiveCfg = Release|Win32 - {43EB7AC1-45F9-45A3-9C1E-BF6A91CD878A}.Release|Win32.Build.0 = Release|Win32 - {6D96E4D8-32C3-4B5E-803F-3F10E034312A}.Debug|Win32.ActiveCfg = Debug|Win32 - {6D96E4D8-32C3-4B5E-803F-3F10E034312A}.Debug|Win32.Build.0 = Debug|Win32 - {6D96E4D8-32C3-4B5E-803F-3F10E034312A}.Release|Win32.ActiveCfg = Release|Win32 - {6D96E4D8-32C3-4B5E-803F-3F10E034312A}.Release|Win32.Build.0 = Release|Win32 - {9C8637C0-AF4C-42B8-A3CE-F4F8CA3DC0EA}.Debug|Win32.ActiveCfg = Debug|Win32 - {9C8637C0-AF4C-42B8-A3CE-F4F8CA3DC0EA}.Debug|Win32.Build.0 = Debug|Win32 - {9C8637C0-AF4C-42B8-A3CE-F4F8CA3DC0EA}.Release|Win32.ActiveCfg = Release|Win32 - {9C8637C0-AF4C-42B8-A3CE-F4F8CA3DC0EA}.Release|Win32.Build.0 = Release|Win32 - {9137DD4C-14F0-4570-95D6-3A776C57B77F}.Debug|Win32.ActiveCfg = Debug|Win32 - {9137DD4C-14F0-4570-95D6-3A776C57B77F}.Debug|Win32.Build.0 = Debug|Win32 - {9137DD4C-14F0-4570-95D6-3A776C57B77F}.Release|Win32.ActiveCfg = Release|Win32 - {9137DD4C-14F0-4570-95D6-3A776C57B77F}.Release|Win32.Build.0 = Release|Win32 - {0C053F1D-954A-45BA-88F6-15B76DDC4B68}.Debug|Win32.ActiveCfg = Debug|Win32 - {0C053F1D-954A-45BA-88F6-15B76DDC4B68}.Debug|Win32.Build.0 = Debug|Win32 - {0C053F1D-954A-45BA-88F6-15B76DDC4B68}.Release|Win32.ActiveCfg = Release|Win32 - {0C053F1D-954A-45BA-88F6-15B76DDC4B68}.Release|Win32.Build.0 = Release|Win32 - {1FFA8E34-3012-4C96-BC6B-B4EB0D5445E6}.Debug|Win32.ActiveCfg = Debug|Win32 - {1FFA8E34-3012-4C96-BC6B-B4EB0D5445E6}.Debug|Win32.Build.0 = Debug|Win32 - {1FFA8E34-3012-4C96-BC6B-B4EB0D5445E6}.Release|Win32.ActiveCfg = Release|Win32 - {1FFA8E34-3012-4C96-BC6B-B4EB0D5445E6}.Release|Win32.Build.0 = Release|Win32 - {B662224F-3155-4D11-844C-AA1628994DB5}.Debug|Win32.ActiveCfg = Debug|Win32 - {B662224F-3155-4D11-844C-AA1628994DB5}.Debug|Win32.Build.0 = Debug|Win32 - {B662224F-3155-4D11-844C-AA1628994DB5}.Release|Win32.ActiveCfg = Release|Win32 - {B662224F-3155-4D11-844C-AA1628994DB5}.Release|Win32.Build.0 = Release|Win32 - {19C0D22A-05BA-4B40-8D58-B2D013AEF48B}.Debug|Win32.ActiveCfg = Debug|Win32 - {19C0D22A-05BA-4B40-8D58-B2D013AEF48B}.Debug|Win32.Build.0 = Debug|Win32 - {19C0D22A-05BA-4B40-8D58-B2D013AEF48B}.Release|Win32.ActiveCfg = Release|Win32 - {19C0D22A-05BA-4B40-8D58-B2D013AEF48B}.Release|Win32.Build.0 = Release|Win32 - {D5499ECD-B2E9-4790-B8C5-DBA2240FDB40}.Debug|Win32.ActiveCfg = Debug|Win32 - {D5499ECD-B2E9-4790-B8C5-DBA2240FDB40}.Debug|Win32.Build.0 = Debug|Win32 - {D5499ECD-B2E9-4790-B8C5-DBA2240FDB40}.Release|Win32.ActiveCfg = Release|Win32 - {D5499ECD-B2E9-4790-B8C5-DBA2240FDB40}.Release|Win32.Build.0 = Release|Win32 - {9D2F4B49-85B8-4A8E-9CB6-610624EA2194}.Debug|Win32.ActiveCfg = Debug|Win32 - {9D2F4B49-85B8-4A8E-9CB6-610624EA2194}.Debug|Win32.Build.0 = Debug|Win32 - {9D2F4B49-85B8-4A8E-9CB6-610624EA2194}.Release|Win32.ActiveCfg = Release|Win32 - {9D2F4B49-85B8-4A8E-9CB6-610624EA2194}.Release|Win32.Build.0 = Release|Win32 - {616A80B9-8CD4-4ADF-B39B-23107326F663}.Debug|Win32.ActiveCfg = Debug|Win32 - {616A80B9-8CD4-4ADF-B39B-23107326F663}.Debug|Win32.Build.0 = Debug|Win32 - {616A80B9-8CD4-4ADF-B39B-23107326F663}.Release|Win32.ActiveCfg = Release|Win32 - {616A80B9-8CD4-4ADF-B39B-23107326F663}.Release|Win32.Build.0 = Release|Win32 - {589E1F92-248D-485D-B9FB-E1C6161801C0}.Debug|Win32.ActiveCfg = Debug|Win32 - {589E1F92-248D-485D-B9FB-E1C6161801C0}.Debug|Win32.Build.0 = Debug|Win32 - {589E1F92-248D-485D-B9FB-E1C6161801C0}.Release|Win32.ActiveCfg = Release|Win32 - {589E1F92-248D-485D-B9FB-E1C6161801C0}.Release|Win32.Build.0 = Release|Win32 - {62835DE2-B950-4049-A947-5DB6080E7396}.Debug|Win32.ActiveCfg = Debug|Win32 - {62835DE2-B950-4049-A947-5DB6080E7396}.Debug|Win32.Build.0 = Debug|Win32 - {62835DE2-B950-4049-A947-5DB6080E7396}.Release|Win32.ActiveCfg = Release|Win32 - {62835DE2-B950-4049-A947-5DB6080E7396}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/build/msvc_2k5/clutter.vcproj b/build/msvc_2k5/clutter.vcproj deleted file mode 100644 index a904bb23e..000000000 --- a/build/msvc_2k5/clutter.vcproj +++ /dev/null @@ -1,772 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-actors.vcproj b/build/msvc_2k5/test-actors.vcproj deleted file mode 100644 index fe4bc1015..000000000 --- a/build/msvc_2k5/test-actors.vcproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-behave.vcproj b/build/msvc_2k5/test-behave.vcproj deleted file mode 100644 index 9f85c5e74..000000000 --- a/build/msvc_2k5/test-behave.vcproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-boxes.vcproj b/build/msvc_2k5/test-boxes.vcproj deleted file mode 100644 index 70213176a..000000000 --- a/build/msvc_2k5/test-boxes.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-depth.vcproj b/build/msvc_2k5/test-depth.vcproj deleted file mode 100644 index 37d93be28..000000000 --- a/build/msvc_2k5/test-depth.vcproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-entry.vcproj b/build/msvc_2k5/test-entry.vcproj deleted file mode 100644 index ac8e27171..000000000 --- a/build/msvc_2k5/test-entry.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-events.vcproj b/build/msvc_2k5/test-events.vcproj deleted file mode 100644 index 450900241..000000000 --- a/build/msvc_2k5/test-events.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-offscreen.vcproj b/build/msvc_2k5/test-offscreen.vcproj deleted file mode 100644 index 905b393db..000000000 --- a/build/msvc_2k5/test-offscreen.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-perspective.vcproj b/build/msvc_2k5/test-perspective.vcproj deleted file mode 100644 index c457d4250..000000000 --- a/build/msvc_2k5/test-perspective.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-project.vcproj b/build/msvc_2k5/test-project.vcproj deleted file mode 100644 index 3aae6da98..000000000 --- a/build/msvc_2k5/test-project.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-rotate.vcproj b/build/msvc_2k5/test-rotate.vcproj deleted file mode 100644 index 8352cec30..000000000 --- a/build/msvc_2k5/test-rotate.vcproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-scale.vcproj b/build/msvc_2k5/test-scale.vcproj deleted file mode 100644 index 824f66f25..000000000 --- a/build/msvc_2k5/test-scale.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-score.vcproj b/build/msvc_2k5/test-score.vcproj deleted file mode 100644 index d806b1dfe..000000000 --- a/build/msvc_2k5/test-score.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-script.vcproj b/build/msvc_2k5/test-script.vcproj deleted file mode 100644 index a52470ab2..000000000 --- a/build/msvc_2k5/test-script.vcproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-text.vcproj b/build/msvc_2k5/test-text.vcproj deleted file mode 100644 index 33846b871..000000000 --- a/build/msvc_2k5/test-text.vcproj +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-textures.vcproj b/build/msvc_2k5/test-textures.vcproj deleted file mode 100644 index ea70b4f02..000000000 --- a/build/msvc_2k5/test-textures.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-threads.vcproj b/build/msvc_2k5/test-threads.vcproj deleted file mode 100644 index 3cc16a577..000000000 --- a/build/msvc_2k5/test-threads.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/test-timeline.vcproj b/build/msvc_2k5/test-timeline.vcproj deleted file mode 100644 index c75ad95c6..000000000 --- a/build/msvc_2k5/test-timeline.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msvc_2k5/version.rc b/build/msvc_2k5/version.rc deleted file mode 100644 index 2df42c474..000000000 --- a/build/msvc_2k5/version.rc +++ /dev/null @@ -1,48 +0,0 @@ -#include -#include "clutter-version.h" - -#define VER_FILEVERSION CLUTTER_MAJOR_VERSION,CLUTTER_MINOR_VERSION,CLUTTER_MICRO_VERSION,0 -#define VER_FILEVERSION_STR CLUTTER_VERSION_S"\0" -#define VER_FILEDESCRIPTION_STR "Clutter runtime, http://clutter-project.org\0" - -#define VER_PRODUCTVERSION CLUTTER_MAJOR_VERSION,CLUTTER_MINOR_VERSION,CLUTTER_MICRO_VERSION,0 -#define VER_PRODUCTVERSION_STR CLUTTER_VERSION_S"\0" -#define VER_PRODUCTNAME_STR "http://clutter-project.org\0" - -#define VER_COMPANYNAME_STR "Opened Hand Ltd\0" -#define VER_COPYRIGHT_STR "Opened Hand Ltd\0" - -#ifndef DEBUG -#define VER_DEBUG 0 -#else -#define VER_DEBUG VS_FF_DEBUG -#endif - -VS_VERSION_INFO VERSIONINFO -FILEVERSION VER_FILEVERSION -PRODUCTVERSION VER_PRODUCTVERSION -FILEFLAGSMASK (VER_DEBUG) -FILEFLAGS (VER_DEBUG) -FILEOS VOS_NT_WINDOWS32 -FILETYPE VFT_DLL -FILESUBTYPE VFT2_UNKNOWN -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904e4" - BEGIN - VALUE "CompanyName", VER_COMPANYNAME_STR - VALUE "FileDescription", VER_FILEDESCRIPTION_STR - VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "LegalCopyright", VER_COPYRIGHT_STR - VALUE "ProductName", VER_PRODUCTNAME_STR - VALUE "ProductVersion", VER_PRODUCTVERSION_STR - END - END - - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1252 - END -END - \ No newline at end of file