From a8f43962f6e75590aac5b5576d85abd01085f462 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Thu, 3 Feb 2011 19:55:22 +0000 Subject: [PATCH] put visual studio files outside the libraries directory SVN revision: 56690 --- legacy/embryo/win32/MANIFEST.txt | 15 -- legacy/embryo/win32/README.txt | 10 - legacy/embryo/win32/common/config.h | 28 --- legacy/embryo/win32/start.bat | 67 ------ legacy/embryo/win32/vs8/embryo.sln | 20 -- legacy/embryo/win32/vs8/libembryo.vcproj | 243 --------------------- legacy/embryo/win32/vs9/embryo.sln | 29 --- legacy/embryo/win32/vs9/embryo_cc.vcproj | 255 ----------------------- legacy/embryo/win32/vs9/libembryo.vcproj | 242 --------------------- 9 files changed, 909 deletions(-) delete mode 100644 legacy/embryo/win32/MANIFEST.txt delete mode 100644 legacy/embryo/win32/README.txt delete mode 100644 legacy/embryo/win32/common/config.h delete mode 100644 legacy/embryo/win32/start.bat delete mode 100644 legacy/embryo/win32/vs8/embryo.sln delete mode 100644 legacy/embryo/win32/vs8/libembryo.vcproj delete mode 100644 legacy/embryo/win32/vs9/embryo.sln delete mode 100644 legacy/embryo/win32/vs9/embryo_cc.vcproj delete mode 100644 legacy/embryo/win32/vs9/libembryo.vcproj diff --git a/legacy/embryo/win32/MANIFEST.txt b/legacy/embryo/win32/MANIFEST.txt deleted file mode 100644 index f13549c72f..0000000000 --- a/legacy/embryo/win32/MANIFEST.txt +++ /dev/null @@ -1,15 +0,0 @@ - - This folder content: - - vs8 - Visual Studio 8 project files - embryo.sln - Embryo MSVC solution - libembryo.vcproj - libembryo project - - vs9 - Visual Studio 9 project files - embryo.sln - Embryo MSVC solution - libembryo.vcproj - libembryo project - embryo_cc.vcproj - embryo_cc project - - start.bat - batch script to start work with the solution - MANIFEST.txt - this file - README.txt - about this folder diff --git a/legacy/embryo/win32/README.txt b/legacy/embryo/win32/README.txt deleted file mode 100644 index 2cc28746e0..0000000000 --- a/legacy/embryo/win32/README.txt +++ /dev/null @@ -1,10 +0,0 @@ - This folder contains Microsoft Visual Studio projects and some sources for - building Embryo. - -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/legacy/embryo/win32/common/config.h b/legacy/embryo/win32/common/config.h deleted file mode 100644 index a2c3b37416..0000000000 --- a/legacy/embryo/win32/common/config.h +++ /dev/null @@ -1,28 +0,0 @@ -/* EINA - EFL data type library - * Copyright (C) 2008 Cedric Bail - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; - * if not, see . - */ - -#ifndef EMBRYO_CONFIG_H_ -#define EMBRYO_CONFIG_H_ - - -#define VMAJ 1 -#define VMIN 0 -#define VMIC 0 -#define VREV 0 - -#endif /* EMBRYO_CONFIG_H_ */ diff --git a/legacy/embryo/win32/start.bat b/legacy/embryo/win32/start.bat deleted file mode 100644 index 68fbf567e8..0000000000 --- a/legacy/embryo/win32/start.bat +++ /dev/null @@ -1,67 +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 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%\embryo.sln - -:END diff --git a/legacy/embryo/win32/vs8/embryo.sln b/legacy/embryo/win32/vs8/embryo.sln deleted file mode 100644 index 20f40ac375..0000000000 --- a/legacy/embryo/win32/vs8/embryo.sln +++ /dev/null @@ -1,20 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libembryo", "libembryo.vcproj", "{689B4F2B-666D-439F-9BF3-1203D813DE3F}" -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 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/legacy/embryo/win32/vs8/libembryo.vcproj b/legacy/embryo/win32/vs8/libembryo.vcproj deleted file mode 100644 index 1971cbfcec..0000000000 --- a/legacy/embryo/win32/vs8/libembryo.vcproj +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/legacy/embryo/win32/vs9/embryo.sln b/legacy/embryo/win32/vs9/embryo.sln deleted file mode 100644 index 71e42c86fd..0000000000 --- a/legacy/embryo/win32/vs9/embryo.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}") = "libembryo", "libembryo.vcproj", "{689B4F2B-666D-439F-9BF3-1203D813DE3F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "embryo_cc", "embryo_cc.vcproj", "{FBAF823B-A9D5-400F-98E6-AB5EDD444C11}" - 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 - {FBAF823B-A9D5-400F-98E6-AB5EDD444C11}.Debug|Win32.ActiveCfg = Debug|Win32 - {FBAF823B-A9D5-400F-98E6-AB5EDD444C11}.Debug|Win32.Build.0 = Debug|Win32 - {FBAF823B-A9D5-400F-98E6-AB5EDD444C11}.Release|Win32.ActiveCfg = Release|Win32 - {FBAF823B-A9D5-400F-98E6-AB5EDD444C11}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/legacy/embryo/win32/vs9/embryo_cc.vcproj b/legacy/embryo/win32/vs9/embryo_cc.vcproj deleted file mode 100644 index 47dd2544f6..0000000000 --- a/legacy/embryo/win32/vs9/embryo_cc.vcproj +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/legacy/embryo/win32/vs9/libembryo.vcproj b/legacy/embryo/win32/vs9/libembryo.vcproj deleted file mode 100644 index 6318bfa16b..0000000000 --- a/legacy/embryo/win32/vs9/libembryo.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -