From 1860a23fc683a395946c38c969755fd28a24a51c Mon Sep 17 00:00:00 2001 From: caro Date: Fri, 18 Sep 2009 07:41:05 +0000 Subject: [PATCH] * fix copy/paste typo in start.bat * add VS project for the eet binary * make eet_main.c compile with vc++ git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@42555 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/bin/eet_main.c | 4 +- win32/start.bat | 2 +- win32/vs9/eet.sln | 11 ++- win32/vs9/eet.vcproj | 202 +++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 216 insertions(+), 3 deletions(-) create mode 100644 win32/vs9/eet.vcproj diff --git a/src/bin/eet_main.c b/src/bin/eet_main.c index a478648..1ae39fe 100644 --- a/src/bin/eet_main.c +++ b/src/bin/eet_main.c @@ -8,8 +8,10 @@ #include #include -#include #include +#ifndef _MSC_VER +# include +#endif #ifdef HAVE_EVIL # include diff --git a/win32/start.bat b/win32/start.bat index 0e93706..97f1b65 100644 --- a/win32/start.bat +++ b/win32/start.bat @@ -58,7 +58,7 @@ rem Add installation directory pathes. set INCLUDE=%EXT_DIR%\include;%INCLUDE% set LIB=%EXT_DIR%\lib;%LIB% -set INCLUDE=%cd%\common;%cd%\..\src\include;%INCLUDE% +set INCLUDE=%cd%\common;%cd%\..\src\lib;%INCLUDE% set SolutionDirectory=%cd%\%PROJECT_TYPE% set DebugOutputDirectory=%SolutionDirectory%\out diff --git a/win32/vs9/eet.sln b/win32/vs9/eet.sln index 836d5af..6685a4f 100644 --- a/win32/vs9/eet.sln +++ b/win32/vs9/eet.sln @@ -1,8 +1,13 @@  Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual C++ Express 2008 +# 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 @@ -13,6 +18,10 @@ Global {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 diff --git a/win32/vs9/eet.vcproj b/win32/vs9/eet.vcproj new file mode 100644 index 0000000..d2f3a62 --- /dev/null +++ b/win32/vs9/eet.vcproj @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.7.4