mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-22 01:40:19 +00:00
7ffd3d3aea
I'll put up a wiki soon which covers new compilation features and stuff, like how to re-enable revision tagging, and how you can direct compiled exe/dlls to be copied to any destination of your choice (yay!) -- plus many other compiling tips (if I can remember them all! >_<) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@581 96395faa-99c1-11dd-bbfe-3dabce05a288
23 lines
898 B
C
23 lines
898 B
C
// svnrev_genric.h --> svnrev.h
|
|
//
|
|
// This file acts as a placebo for people who do not have TortoiseSVN installed.
|
|
// It provides "empty" revision information to the Pcsx2 Playground projects in
|
|
// the absence of real revisions derived from the repository being built.
|
|
//
|
|
// This file does not affect application/dll builds in any significant manner,
|
|
// other than the lack of automatic revision tags inserted into the app (which
|
|
// is very convenient but hardly necessary).
|
|
//
|
|
// See svn_template.h for more information on how the process of revision
|
|
// templating works.
|
|
//
|
|
// If you would like to enable automatic revisin tagging, TortoiseSVN can be
|
|
// downloaded from http://tortoisesvn.tigris.org
|
|
|
|
#define SVN_REV_UNKNOWN
|
|
|
|
// The following defines are included so that code will still compile even if it
|
|
// doesn't check for the SVN_REV_UNKNOWN define.
|
|
|
|
#define SVN_REV 0
|
|
#define SVN_MODS "" |