mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
git describe in header
This commit is contained in:
@ -2,6 +2,12 @@
|
|||||||
cd ${0%/*} || exit 1 # run from this directory
|
cd ${0%/*} || exit 1 # run from this directory
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
# update version string if under Git
|
||||||
|
git describe 2> /dev/null | \
|
||||||
|
(read project_string \
|
||||||
|
&& sed -e 's/WM_PROJECT_VERSION/\"'"${project_string}"'"/' \
|
||||||
|
OpenFOAM/global/global_raw.C >OpenFOAM/global/global.C)
|
||||||
|
|
||||||
wmakeLnInclude -f OpenFOAM
|
wmakeLnInclude -f OpenFOAM
|
||||||
wmakeLnInclude -f OSspecific/$WM_OS
|
wmakeLnInclude -f OSspecific/$WM_OS
|
||||||
Pstream/Allwmake
|
Pstream/Allwmake
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
global/global.Cver
|
global/global.C
|
||||||
|
|
||||||
global/dimensionedConstants/dimensionedConstants.C
|
global/dimensionedConstants/dimensionedConstants.C
|
||||||
global/argList/argList.C
|
global/argList/argList.C
|
||||||
global/clock/clock.C
|
global/clock/clock.C
|
||||||
|
|||||||
@ -0,0 +1,78 @@
|
|||||||
|
/*-------------------------------*- C++ -*-----------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by the
|
||||||
|
Free Software Foundation; either version 2 of the License, or (at your
|
||||||
|
option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
||||||
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
Description
|
||||||
|
Define the globals used in the FOAM library. It is important that these
|
||||||
|
are constructed in the appropriate order to avoid the use of unconstructed
|
||||||
|
data in the global namespace.
|
||||||
|
|
||||||
|
This file gets preprocessed by the Allwmake script to replace
|
||||||
|
PROJECT_VERSION with the appropriate version number string.
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
#include "foamVersion.H"
|
||||||
|
|
||||||
|
const char* const Foam::FOAMversion = "dev_2008-10-29-197-gc1bfee3";
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// Setup an error handler for the global new operator
|
||||||
|
|
||||||
|
#include "new.C"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// Global IO streams
|
||||||
|
|
||||||
|
#include "IOstreams.C"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
#include "JobInfo.H"
|
||||||
|
bool Foam::JobInfo::constructed = false;
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// Global error definitions (initialised by construction)
|
||||||
|
|
||||||
|
#include "messageStream.C"
|
||||||
|
#include "error.C"
|
||||||
|
#include "IOerror.C"
|
||||||
|
#include "token.C"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// Read the debug and info switches
|
||||||
|
|
||||||
|
#include "debug.C"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// Read and set cell models
|
||||||
|
|
||||||
|
#include "globalCellModeller.C"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// Create the jobInfo file in the $FOAM_JOB_DIR/runningJobs directory
|
||||||
|
|
||||||
|
#include "JobInfo.C"
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -27,9 +27,8 @@ Description
|
|||||||
are constructed in the appropriate order to avoid the use of unconstructed
|
are constructed in the appropriate order to avoid the use of unconstructed
|
||||||
data in the global namespace.
|
data in the global namespace.
|
||||||
|
|
||||||
This file has the extension .ver to force it to be parsed by the script
|
This file gets preprocessed by the Allwmake script to replace
|
||||||
which converts WM_PROJECT_VERSION into the appropriate version number
|
PROJECT_VERSION with the appropriate version number string.
|
||||||
string.
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
@ -1,5 +1,3 @@
|
|||||||
include $(GENERAL_RULES)/version
|
|
||||||
|
|
||||||
include $(GENERAL_RULES)/sourceToDep
|
include $(GENERAL_RULES)/sourceToDep
|
||||||
|
|
||||||
include $(GENERAL_RULES)/java
|
include $(GENERAL_RULES)/java
|
||||||
|
|||||||
@ -1,6 +0,0 @@
|
|||||||
.SUFFIXES: .Cver
|
|
||||||
|
|
||||||
Cvertoo = sed s/WM_PROJECT_VERSION/\"$(WM_PROJECT_VERSION)\"/ $$SOURCE > $*.C ; $(CC) $(c++FLAGS) -c $*.C -o $@
|
|
||||||
|
|
||||||
.Cver.dep:
|
|
||||||
$(MAKE_DEP)
|
|
||||||
Reference in New Issue
Block a user