mirror of
https://github.com/mangosfour/server.git
synced 2025-12-18 19:37:01 +00:00
Rename gensvnrevision and related files and references to genrevision/etc.
Also svn_revision.h renmaed to revision.h and defines in to it also renamed. MaNGOS code updated. Other projects using this genrevison tool need to be updated in similar way.
This commit is contained in:
parent
3dc4e40e34
commit
643f6af8c7
20 changed files with 119 additions and 118 deletions
|
|
@ -298,7 +298,7 @@ AC_CONFIG_FILES([
|
|||
sql/updates/Makefile
|
||||
src/Makefile
|
||||
src/tools/Makefile
|
||||
src/tools/gensvnrevision/Makefile
|
||||
src/tools/genrevision/Makefile
|
||||
src/framework/Makefile
|
||||
src/shared/Makefile
|
||||
src/shared/Auth/Makefile
|
||||
|
|
|
|||
|
|
@ -687,7 +687,9 @@ enum MangosStrings
|
|||
|
||||
// FREE IDS 1200-9999
|
||||
|
||||
// Use for not-in-svn patches 10000-10999
|
||||
// Use for not-in-offcial-sources patches
|
||||
// 10000-10999
|
||||
|
||||
// Use for custom patches 11000-11999
|
||||
|
||||
// NOT RESERVED IDS 12000-
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
#include "Language.h"
|
||||
#include "AccountMgr.h"
|
||||
#include "SystemConfig.h"
|
||||
#include "svn_revision.h"
|
||||
#include "revision.h"
|
||||
#include "Util.h"
|
||||
|
||||
bool ChatHandler::HandleHelpCommand(const char* args)
|
||||
|
|
@ -95,9 +95,9 @@ bool ChatHandler::HandleInfoCommand(const char* /*args*/)
|
|||
|
||||
char const* full;
|
||||
if(m_session)
|
||||
full = _FULLVERSION(SVN_DATE,SVN_TIME,"|cffffffff|Hurl:" SVN_REVISION "|h" SVN_REVISION "|h|r");
|
||||
full = _FULLVERSION(REVISION_DATE,REVISION_TIME,"|cffffffff|Hurl:" REVISION_ID "|h" REVISION_ID "|h|r");
|
||||
else
|
||||
full = _FULLVERSION(SVN_DATE,SVN_TIME,SVN_REVISION);
|
||||
full = _FULLVERSION(REVISION_DATE,REVISION_TIME,REVISION_ID);
|
||||
|
||||
PSendSysMessage(full);
|
||||
PSendSysMessage(LANG_CONNECTED_USERS, activeClientsNum, maxActiveClientsNum, queuedClientsNum, maxQueuedClientsNum);
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
#include "Timer.h"
|
||||
#include "Policies/SingletonImp.h"
|
||||
#include "SystemConfig.h"
|
||||
#include "svn_revision.h"
|
||||
#include "revision.h"
|
||||
#include "Config/ConfigEnv.h"
|
||||
#include "Database/DatabaseEnv.h"
|
||||
#include "CliRunnable.h"
|
||||
|
|
@ -196,7 +196,7 @@ Master::~Master()
|
|||
/// Main function
|
||||
int Master::Run()
|
||||
{
|
||||
sLog.outString( "%s [world-daemon]", _FULLVERSION(SVN_DATE,SVN_TIME,SVN_REVISION) );
|
||||
sLog.outString( "%s [world-daemon]", _FULLVERSION(REVISION_DATE,REVISION_TIME,REVISION_ID) );
|
||||
sLog.outString( "<Ctrl-C> to stop.\n\n" );
|
||||
|
||||
sLog.outTitle( "MM MM MM MM MMMMM MMMM MMMMM");
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
#include "sockets/ListenSocket.h"
|
||||
#include "AuthSocket.h"
|
||||
#include "SystemConfig.h"
|
||||
#include "svn_revision.h"
|
||||
#include "revision.h"
|
||||
#include "Util.h"
|
||||
|
||||
#ifdef WIN32
|
||||
|
|
@ -150,7 +150,7 @@ extern int main(int argc, char **argv)
|
|||
while (pause > clock()) {}
|
||||
}
|
||||
|
||||
sLog.outString( "%s [realm-daemon]", _FULLVERSION(SVN_DATE,SVN_TIME,SVN_REVISION) );
|
||||
sLog.outString( "%s [realm-daemon]", _FULLVERSION(REVISION_DATE,REVISION_TIME,REVISION_ID) );
|
||||
sLog.outString( "<Ctrl-C> to stop.\n" );
|
||||
|
||||
/// realmd PID file creation
|
||||
|
|
|
|||
2
src/shared/.gitignore
vendored
2
src/shared/.gitignore
vendored
|
|
@ -11,4 +11,4 @@
|
|||
#
|
||||
|
||||
SystemConfig.h
|
||||
svn_revision.h
|
||||
revision.h
|
||||
|
|
|
|||
|
|
@ -46,18 +46,18 @@ libmangosshared_a_SOURCES = \
|
|||
Util.cpp \
|
||||
Util.h \
|
||||
WorldPacket.h \
|
||||
svn_revision.h
|
||||
revision.h
|
||||
|
||||
# Get svn revision
|
||||
SVN_REVISION_FILE = svn_revision.h
|
||||
# Get revision (git or svn)
|
||||
REVISION_FILE = revision.h
|
||||
|
||||
BUILT_SOURCES = $(SVN_REVISION_FILE)
|
||||
CLEANFILES = $(SVN_REVISION_FILE)
|
||||
BUILT_SOURCES = $(REVISION_FILE)
|
||||
CLEANFILES = $(REVISION_FILE)
|
||||
|
||||
FORCE:
|
||||
|
||||
$(SVN_REVISION_FILE) : $(top_builddir)/src/tools/gensvnrevision/gensvnrevision FORCE
|
||||
$(top_builddir)/src/tools/gensvnrevision/gensvnrevision $(top_srcdir)
|
||||
$(REVISION_FILE) : $(top_builddir)/src/tools/genrevision/genrevision FORCE
|
||||
$(top_builddir)/src/tools/genrevision/genrevision $(top_srcdir)
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
# Disabled packet logger
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
#define _NO_CVCONST_H
|
||||
#include <dbghelp.h>
|
||||
#include "WheatyExceptionReport.h"
|
||||
#include "svn_revision.h"
|
||||
#include "revision.h"
|
||||
#define CrashFolder _T("Crashs")
|
||||
//#pragma comment(linker, "/defaultlib:dbghelp.lib")
|
||||
|
||||
|
|
@ -385,7 +385,7 @@ PEXCEPTION_POINTERS pExceptionInfo )
|
|||
GetLocalTime(&systime);
|
||||
|
||||
// Start out with a banner
|
||||
_tprintf(_T("Revision: %s\r\n"), SVN_REVISION);
|
||||
_tprintf(_T("Revision: %s %s %s\r\n"), REVISION_DATE, REVISION_TIME, REVISION_ID);
|
||||
_tprintf(_T("Date %u:%u:%u. Time %u:%u \r\n"), systime.wDay, systime.wMonth, systime.wYear, systime.wHour, systime.wMinute);
|
||||
PEXCEPTION_RECORD pExceptionRecord = pExceptionInfo->ExceptionRecord;
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
## Sub-directories to parse
|
||||
SUBDIRS = gensvnrevision
|
||||
SUBDIRS = genrevision
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
# Nothing yet.
|
||||
|
|
|
|||
|
|
@ -20,13 +20,13 @@
|
|||
AM_CPPFLAGS = -I$(srcdir)
|
||||
|
||||
## Build world list daemon as standalone program
|
||||
bin_PROGRAMS = gensvnrevision
|
||||
gensvnrevision_SOURCES = \
|
||||
gensvnrevision.cpp
|
||||
bin_PROGRAMS = genrevision
|
||||
genrevision_SOURCES = \
|
||||
genrevision.cpp
|
||||
|
||||
## Link world daemon against the shared library
|
||||
gensvnrevision_LDADD =
|
||||
gensvnrevision_LDFLAGS = -L$(libdir)
|
||||
genrevision_LDADD =
|
||||
genrevision_LDFLAGS = -L$(libdir)
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
# Include world daemon configuration
|
||||
|
|
@ -172,12 +172,12 @@ bool extractDataFromGit(std::string filename, std::string path, bool url, RawDat
|
|||
std::string generateHeader(char const* rev_str, char const* date_str, char const* time_str)
|
||||
{
|
||||
std::ostringstream newData;
|
||||
newData << "#ifndef __SVN_REVISION_H__" << std::endl;
|
||||
newData << "#define __SVN_REVISION_H__" << std::endl;
|
||||
newData << " #define SVN_REVISION \"" << rev_str << "\"" << std::endl;
|
||||
newData << " #define SVN_DATE \"" << date_str << "\"" << std::endl;
|
||||
newData << " #define SVN_TIME \"" << time_str << "\""<< std::endl;
|
||||
newData << "#endif // __SVN_REVISION_H__" << std::endl;
|
||||
newData << "#ifndef __REVISION_H__" << std::endl;
|
||||
newData << "#define __REVISION_H__" << std::endl;
|
||||
newData << " #define REVISION_ID \"" << rev_str << "\"" << std::endl;
|
||||
newData << " #define REVISION_DATE \"" << date_str << "\"" << std::endl;
|
||||
newData << " #define REVISION_TIME \"" << time_str << "\""<< std::endl;
|
||||
newData << "#endif // __REVISION_H__" << std::endl;
|
||||
return newData.str();
|
||||
}
|
||||
|
||||
|
|
@ -263,7 +263,7 @@ int main(int argc, char **argv)
|
|||
/// get existed header data for compare
|
||||
std::string oldData;
|
||||
|
||||
if(FILE* HeaderFile = fopen("svn_revision.h","rb"))
|
||||
if(FILE* HeaderFile = fopen("revision.h","rb"))
|
||||
{
|
||||
while(!feof(HeaderFile))
|
||||
{
|
||||
|
|
@ -279,7 +279,7 @@ int main(int argc, char **argv)
|
|||
/// update header only if different data
|
||||
if(newData != oldData)
|
||||
{
|
||||
if(FILE* OutputFile = fopen("svn_revision.h","wb"))
|
||||
if(FILE* OutputFile = fopen("revision.h","wb"))
|
||||
{
|
||||
fprintf(OutputFile,"%s",newData.c_str());
|
||||
fclose(OutputFile);
|
||||
|
|
@ -2,9 +2,9 @@
|
|||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="gensvnrevision"
|
||||
Name="genrevision"
|
||||
ProjectGUID="{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
RootNamespace="gensvnrevision"
|
||||
RootNamespace="genrevision"
|
||||
Keyword="Win32Proj"
|
||||
TargetFrameworkVersion="196613"
|
||||
>
|
||||
|
|
@ -18,8 +18,8 @@
|
|||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
>
|
||||
|
|
@ -89,8 +89,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
WholeProgramOptimization="1"
|
||||
|
|
@ -166,7 +166,7 @@
|
|||
</References>
|
||||
<Files>
|
||||
<File
|
||||
RelativePath="..\..\src\tools\gensvnrevision\gensvnrevision.cpp"
|
||||
RelativePath="..\..\src\tools\genrevision\genrevision.cpp"
|
||||
>
|
||||
</File>
|
||||
</Files>
|
||||
|
|
@ -429,28 +429,26 @@
|
|||
RelativePath="..\..\src\shared\ServiceWin32.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\svn_revision.h">
|
||||
RelativePath="..\..\src\shared\revision.h">
|
||||
<FileConfiguration
|
||||
Name="Release|Win32">
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
|
||||
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
|
||||
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"/>
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32">
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
|
||||
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
|
||||
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"/>
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8,00"
|
||||
Name="gensvnrevision"
|
||||
Name="genrevision"
|
||||
ProjectGUID="{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
RootNamespace="gensvnrevision"
|
||||
RootNamespace="genrevision"
|
||||
Keyword="Win32Proj"
|
||||
TargetFrameworkVersion="196613"
|
||||
>
|
||||
|
|
@ -21,8 +21,8 @@
|
|||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
>
|
||||
|
|
@ -92,8 +92,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
WholeProgramOptimization="1"
|
||||
|
|
@ -166,8 +166,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
>
|
||||
|
|
@ -238,8 +238,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
WholeProgramOptimization="1"
|
||||
|
|
@ -316,7 +316,7 @@
|
|||
</References>
|
||||
<Files>
|
||||
<File
|
||||
RelativePath="..\..\src\tools\gensvnrevision\gensvnrevision.cpp"
|
||||
RelativePath="..\..\src\tools\genrevision\genrevision.cpp"
|
||||
>
|
||||
</File>
|
||||
</Files>
|
||||
|
|
@ -762,17 +762,17 @@
|
|||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\svn_revision.h"
|
||||
RelativePath="..\..\src\shared\revision.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
|
|
@ -780,10 +780,10 @@
|
|||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
|
|
@ -791,10 +791,10 @@
|
|||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
|
|
@ -802,10 +802,10 @@
|
|||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9,00"
|
||||
Name="gensvnrevision"
|
||||
Name="genrevision"
|
||||
ProjectGUID="{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
RootNamespace="gensvnrevision"
|
||||
RootNamespace="genrevision"
|
||||
Keyword="Win32Proj"
|
||||
TargetFrameworkVersion="0"
|
||||
>
|
||||
|
|
@ -21,8 +21,8 @@
|
|||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
>
|
||||
|
|
@ -94,8 +94,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
>
|
||||
|
|
@ -168,8 +168,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
WholeProgramOptimization="1"
|
||||
|
|
@ -244,8 +244,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\gensvnrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
OutputDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
IntermediateDirectory=".\genrevision__$(PlatformName)_$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
WholeProgramOptimization="1"
|
||||
|
|
@ -324,7 +324,7 @@
|
|||
</References>
|
||||
<Files>
|
||||
<File
|
||||
RelativePath="..\..\src\tools\gensvnrevision\gensvnrevision.cpp"
|
||||
RelativePath="..\..\src\tools\genrevision\genrevision.cpp"
|
||||
>
|
||||
</File>
|
||||
</Files>
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
ProjectGUID="{90297C34-F231-4DF4-848E-A74BCC0E40ED}"
|
||||
RootNamespace="shared"
|
||||
Keyword="Win32Proj"
|
||||
TargetFrameworkVersion="0"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
|
|
@ -757,25 +758,17 @@
|
|||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\ServiceWin32.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\ServiceWin32.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\svn_revision.h"
|
||||
RelativePath="..\..\src\shared\revision.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
|
|
@ -783,10 +776,10 @@
|
|||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
|
|
@ -794,10 +787,10 @@
|
|||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
|
|
@ -805,13 +798,21 @@
|
|||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Extract SVN revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\gensvnrevision__$(PlatformName)_$(ConfigurationName)\gensvnrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries"
|
||||
Outputs="svn_revision.h"
|
||||
Description="Extract revision"
|
||||
CommandLine="cd "$(SolutionDir)..\src\shared"
"$(TargetDir)\..\genrevision__$(PlatformName)_$(ConfigurationName)\genrevision.exe" "..\.."
"
|
||||
AdditionalDependencies="$(SolutionDir)../.svn/entries;$(SolutionDir)../.git/FETCH_HEAD"
|
||||
Outputs="revision.h"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\ServiceWin32.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\ServiceWin32.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\SystemConfig.h.in"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sockets", "VC71\sockets.vcp
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gensvnrevision", "VC71\gensvnrevision.vcproj", "{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "genrevision", "VC71\genrevision.vcproj", "{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "g3dlite", "VC80\g3dlite.vcp
|
|||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sockets", "VC80\sockets.vcproj", "{04BAF755-0D67-46F8-B1C6-77AE5368F3CB}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gensvnrevision", "VC80\gensvnrevision.vcproj", "{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "genrevision", "VC80\genrevision.vcproj", "{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACEWraper", "VC80\ACE_vc8.vcproj", "{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}"
|
||||
EndProject
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "g3dlite", "VC90\g3dlite.vcp
|
|||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sockets", "VC90\sockets.vcproj", "{04BAF755-0D67-46F8-B1C6-77AE5368F3CB}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gensvnrevision", "VC90\gensvnrevision.vcproj", "{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "genrevision", "VC90\genrevision.vcproj", "{803F488E-4C5A-4866-8D5C-1E6C03C007C2}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACEWraper", "VC90\ACE_vc9.vcproj", "{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}"
|
||||
EndProject
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue