Skip to content

Commit

Permalink
Provide a static version.h for development builds.
Browse files Browse the repository at this point in the history
I forgot to add this in last week's versioning revamp, meaning that
dev builds straight from source control would fail for lack of
version.h because Buildscr is the only thing that knows how to create
it. Other projects that I restructured this way come with a static
version of version.h so that local builds can still work; I forgot
that in this one.

[originally from svn r10274]
  • Loading branch information
sgtatham committed Sep 27, 2014
1 parent 64ceaf0 commit 1ba20ed
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions version.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* This header file provides the version #define for a particular
* build of Puzzles.
*
* When my automated build system does a full build, Buildscr
* completely overwrites this file with information appropriate to
* that build. The information _here_ is default stuff used for local
* development runs of 'make'.
*/

#define VER "Unidentified build"

0 comments on commit 1ba20ed

Please sign in to comment.