1
0
Fork 0

updated Visual Studio projects

This commit is contained in:
Jan Steemann 2013-10-10 17:54:49 +02:00
parent b8318609e2
commit 7e3a7825e5
5 changed files with 26 additions and 12 deletions

View File

@ -185,9 +185,6 @@
<AdditionalDependencies>crypt32.lib;WINMM.LIB;Ws2_32.lib;readline.lib;libeay64.lib;ssleay64.lib;arango_client.lib;arango_v8.lib;arango.lib;regex.lib;v8_base.lib;v8_nosnapshot.lib;common_icu64.lib;i18n_icu64.lib;icudt51_icu64.lib;io_icu64.lib;layout_icu64.lib;layoutex_icu64.lib;stubdata_icu64.lib;toolutil_icu64.lib;%(AdditionalDependencies);zlibstat.lib</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<None Include="ReadMe.txt" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\arangosh\ArangoShell\ArangoClient.cpp">
<DebugInformationFormat Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">OldStyle</DebugInformationFormat>

View File

@ -1,8 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<None Include="ReadMe.txt" />
</ItemGroup>
<ItemGroup>
<Filter Include="ArangoShellSource">
<UniqueIdentifier>{6ed4cf69-2353-499e-9977-9c260f3f4f60}</UniqueIdentifier>

View File

@ -40,6 +40,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Arangoimp Binary", "Arangoi
{604036DD-7013-4463-B827-D06016BD41FC} = {604036DD-7013-4463-B827-D06016BD41FC}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Arangodump Binary", "Arangodump Binary\Arangodump Binary.vcxproj", "{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Arangorestore Binary", "Arangorestore Binary\Arangorestore Binary.vcxproj", "{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
@ -128,6 +132,22 @@ Global
{4C3903F3-396E-489F-954A-75399C64BE92}.Release|Win32.Build.0 = Release|Win32
{4C3903F3-396E-489F-954A-75399C64BE92}.Release|x64.ActiveCfg = Release|x64
{4C3903F3-396E-489F-954A-75399C64BE92}.Release|x64.Build.0 = Release|x64
{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}.Debug|Win32.ActiveCfg = Debug|Win32
{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}.Debug|Win32.Build.0 = Debug|Win32
{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}.Debug|x64.ActiveCfg = Debug|x64
{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}.Debug|x64.Build.0 = Debug|x64
{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}.Release|Win32.ActiveCfg = Release|Win32
{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}.Release|Win32.Build.0 = Release|Win32
{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}.Release|x64.ActiveCfg = Release|x64
{B4985B94-29DA-4649-A2F2-FEDF4E0560EF}.Release|x64.Build.0 = Release|x64
{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}.Debug|Win32.ActiveCfg = Debug|Win32
{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}.Debug|Win32.Build.0 = Debug|Win32
{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}.Debug|x64.ActiveCfg = Debug|x64
{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}.Debug|x64.Build.0 = Debug|x64
{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}.Release|Win32.ActiveCfg = Release|Win32
{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}.Release|Win32.Build.0 = Release|Win32
{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}.Release|x64.ActiveCfg = Release|x64
{9DB047E8-AD65-4EBB-9BD2-D0A0B6F6BB25}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -248,7 +248,7 @@ void arangodumpEntryFunction () {
_exit(1);
}
TRI_Application_Exit_SetExit(arangoimpExitFunction);
TRI_Application_Exit_SetExit(arangodumpExitFunction);
}
static void arangodumpExitFunction (int exitCode, void* data) {
@ -307,7 +307,7 @@ static string GetHttpErrorMessage (SimpleHttpResult* result) {
/// @brief fetch the version from the server
////////////////////////////////////////////////////////////////////////////////
static string GetVersion () {
static string GetArangoVersion () {
map<string, string> headers;
SimpleHttpResult* response = Client->request(HttpRequest::HTTP_REQUEST_GET,
@ -903,7 +903,7 @@ int main (int argc, char* argv[]) {
Client->setLocationRewriter(0, &rewriteLocation);
Client->setUserNamePassword("/", BaseClient.username(), BaseClient.password());
const string versionString = GetVersion();
const string versionString = GetArangoVersion();
if (! Connection->isConnected()) {
cerr << "Could not connect to endpoint '" << BaseClient.endpointString()

View File

@ -234,7 +234,7 @@ void arangorestoreEntryFunction () {
_exit(1);
}
TRI_Application_Exit_SetExit(arangoimpExitFunction);
TRI_Application_Exit_SetExit(arangorestoreExitFunction);
}
@ -294,7 +294,7 @@ static string GetHttpErrorMessage (SimpleHttpResult* result) {
/// @brief fetch the version from the server
////////////////////////////////////////////////////////////////////////////////
static string GetVersion () {
static string GetArangoVersion () {
map<string, string> headers;
SimpleHttpResult* response = Client->request(HttpRequest::HTTP_REQUEST_GET,
@ -827,7 +827,7 @@ int main (int argc, char* argv[]) {
Client->setLocationRewriter(0, &rewriteLocation);
Client->setUserNamePassword("/", BaseClient.username(), BaseClient.password());
const string versionString = GetVersion();
const string versionString = GetArangoVersion();
if (! Connection->isConnected()) {
cerr << "Could not connect to endpoint " << BaseClient.endpointServer()->getSpecification() << endl;