From f64be2d4d2bdfdbb2da7a332515033e77d863979 Mon Sep 17 00:00:00 2001 From: caro Date: Thu, 3 Feb 2011 19:52:33 +0000 Subject: [PATCH] put visual studio files outside the libraries directory git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@56687 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- win32/MANIFEST.txt | 14 --- win32/README.txt | 9 -- win32/start.bat | 75 --------------- win32/vs8/eet.sln | 29 ------ win32/vs8/eet.vcproj | 209 ---------------------------------------- win32/vs8/libeet.vcproj | 247 ------------------------------------------------ win32/vs9/eet.sln | 29 ------ win32/vs9/eet.vcproj | 203 --------------------------------------- win32/vs9/libeet.vcproj | 246 ----------------------------------------------- 9 files changed, 1061 deletions(-) delete mode 100644 win32/MANIFEST.txt delete mode 100644 win32/README.txt delete mode 100644 win32/start.bat delete mode 100644 win32/vs8/eet.sln delete mode 100644 win32/vs8/eet.vcproj delete mode 100644 win32/vs8/libeet.vcproj delete mode 100644 win32/vs9/eet.sln delete mode 100644 win32/vs9/eet.vcproj delete mode 100644 win32/vs9/libeet.vcproj diff --git a/win32/MANIFEST.txt b/win32/MANIFEST.txt deleted file mode 100644 index 10d9efe..0000000 --- a/win32/MANIFEST.txt +++ /dev/null @@ -1,14 +0,0 @@ - - This folder content: - - vs8 - Visual Studio 8 project files - eet.sln - Eet MSVC solution - libeet.vcproj - libeet project - - vs9 - Visual Studio 9 project files - eet.sln - Eet MSVC solution - libeet.vcproj - libeet project - - start.bat - batch script to start work with the solution - MANIFEST.txt - this file - README.txt - about this folder diff --git a/win32/README.txt b/win32/README.txt deleted file mode 100644 index 0af05f2..0000000 --- a/win32/README.txt +++ /dev/null @@ -1,9 +0,0 @@ - This folder contains Microsoft Visual Studio projects for building Eet. - -Important: - - Do not launch manually any solutions or projects in the folder, to start - a solution run the start.bat script, it will setup environment for - projects and will check system requirements. start.bat will detect - automatically the version of Visual Studio which is installed. It - currently supports Visual Studio 2005 and 2008. diff --git a/win32/start.bat b/win32/start.bat deleted file mode 100644 index 97f1b65..0000000 --- a/win32/start.bat +++ /dev/null @@ -1,75 +0,0 @@ -@echo off - -rem Set external libraries directory. -set EXT_DIR=%cd%\..\..\..\extern - -if not exist %EXT_DIR% ( - set EXT_DIR= - echo ERROR: External libs dir is not set. - pause - goto END -) - -rem Check for basic requirements for Visual Studio 2008 -if "%VS90COMNTOOLS%" == "" ( - echo ERROR: Microsoft Visual Studio 2008 is not installed. - pause - goto NOVS9 -) - -set PROJECT_TYPE=vs9 -set VSCOMMONTOOLS=%VS90COMNTOOLS%vsvars32.bat - -goto STARTVS - -:NOVS9 - -rem Check for basic requirements for Visual Studio 2005 -if "%VS80COMNTOOLS%" == "" ( - echo ERROR: Microsoft Visual Studio 2005 is not installed. - pause - goto END -) - -set PROJECT_TYPE=vs8 -set VSCOMMONTOOLS=%VS80COMNTOOLS%vsvars32.bat - -:STARTVS - -rem Setup common Win32 environment variables - -rem Add Evil lib path -set EvilInclude=%cd%\..\..\evil\src\lib -set EvilCommon=%cd%\..\..\evil\win32\common -set EvilOut=%cd%\..\..\evil\win32\%PROJECT_TYPE%\out - -set INCLUDE=%EvilCommon%;%EvilInclude%;%EvilInclude%\dlfcn;%INCLUDE% -set LIB=%EvilOut%;%LIB% - -rem Add Eina lib path -set EinaInclude=%cd%\..\..\eina\src\include -set EinaCommon=%cd%\..\..\eina\win32\common -set EinaOut=%cd%\..\..\eina\win32\%PROJECT_TYPE%\out - -set INCLUDE=%EinaCommon%;%EinaInclude%;%INCLUDE% -set LIB=%EinaOut%;%LIB% - -rem Add installation directory pathes. -set INCLUDE=%EXT_DIR%\include;%INCLUDE% -set LIB=%EXT_DIR%\lib;%LIB% - -set INCLUDE=%cd%\common;%cd%\..\src\lib;%INCLUDE% - -set SolutionDirectory=%cd%\%PROJECT_TYPE% -set DebugOutputDirectory=%SolutionDirectory%\out -set ReleaseOutputDirectory=%SolutionDirectory%\out -set DebugLibraryDirectory=%SolutionDirectory%\out -set ReleaseLibraryDirectory=%SolutionDirectory%\out -set TemporaryDirectory=%SolutionDirectory%\temp - -rem Setting environment for using Microsoft Visual Studio x86 tools. -call "%VSCOMMONTOOLS%" - -%PROJECT_TYPE%\eet.sln - -:END diff --git a/win32/vs8/eet.sln b/win32/vs8/eet.sln deleted file mode 100644 index fcd614e..0000000 --- a/win32/vs8/eet.sln +++ /dev/null @@ -1,29 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual C++ Express 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libeet", "libeet.vcproj", "{689B4F2B-666D-439F-9BF3-1203D813DE3F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "eet", "eet.vcproj", "{254248BF-623C-48E0-8829-4F43C617706C}" - ProjectSection(ProjectDependencies) = postProject - {689B4F2B-666D-439F-9BF3-1203D813DE3F} = {689B4F2B-666D-439F-9BF3-1203D813DE3F} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {689B4F2B-666D-439F-9BF3-1203D813DE3F}.Debug|Win32.ActiveCfg = Debug|Win32 - {689B4F2B-666D-439F-9BF3-1203D813DE3F}.Debug|Win32.Build.0 = Debug|Win32 - {689B4F2B-666D-439F-9BF3-1203D813DE3F}.Release|Win32.ActiveCfg = Release|Win32 - {689B4F2B-666D-439F-9BF3-1203D813DE3F}.Release|Win32.Build.0 = Release|Win32 - {254248BF-623C-48E0-8829-4F43C617706C}.Debug|Win32.ActiveCfg = Debug|Win32 - {254248BF-623C-48E0-8829-4F43C617706C}.Debug|Win32.Build.0 = Debug|Win32 - {254248BF-623C-48E0-8829-4F43C617706C}.Release|Win32.ActiveCfg = Release|Win32 - {254248BF-623C-48E0-8829-4F43C617706C}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vs8/eet.vcproj b/win32/vs8/eet.vcproj deleted file mode 100644 index 88e4df9..0000000 --- a/win32/vs8/eet.vcproj +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs8/libeet.vcproj b/win32/vs8/libeet.vcproj deleted file mode 100644 index 3afaaba..0000000 --- a/win32/vs8/libeet.vcproj +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs9/eet.sln b/win32/vs9/eet.sln deleted file mode 100644 index 6685a4f..0000000 --- a/win32/vs9/eet.sln +++ /dev/null @@ -1,29 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libeet", "libeet.vcproj", "{689B4F2B-666D-439F-9BF3-1203D813DE3F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "eet", "eet.vcproj", "{1B13CAE1-0AD7-4BE8-B24C-34560EDE69A6}" - ProjectSection(ProjectDependencies) = postProject - {689B4F2B-666D-439F-9BF3-1203D813DE3F} = {689B4F2B-666D-439F-9BF3-1203D813DE3F} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {689B4F2B-666D-439F-9BF3-1203D813DE3F}.Debug|Win32.ActiveCfg = Debug|Win32 - {689B4F2B-666D-439F-9BF3-1203D813DE3F}.Debug|Win32.Build.0 = Debug|Win32 - {689B4F2B-666D-439F-9BF3-1203D813DE3F}.Release|Win32.ActiveCfg = Release|Win32 - {689B4F2B-666D-439F-9BF3-1203D813DE3F}.Release|Win32.Build.0 = Release|Win32 - {1B13CAE1-0AD7-4BE8-B24C-34560EDE69A6}.Debug|Win32.ActiveCfg = Debug|Win32 - {1B13CAE1-0AD7-4BE8-B24C-34560EDE69A6}.Debug|Win32.Build.0 = Debug|Win32 - {1B13CAE1-0AD7-4BE8-B24C-34560EDE69A6}.Release|Win32.ActiveCfg = Release|Win32 - {1B13CAE1-0AD7-4BE8-B24C-34560EDE69A6}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vs9/eet.vcproj b/win32/vs9/eet.vcproj deleted file mode 100644 index 4f4b22d..0000000 --- a/win32/vs9/eet.vcproj +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs9/libeet.vcproj b/win32/vs9/libeet.vcproj deleted file mode 100644 index e19c2fe..0000000 --- a/win32/vs9/libeet.vcproj +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- 2.7.4