mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
added Foam::FOAMbuild to Foam::FOAMversion
- avoids problems with finding files based on FOAMversion (reported by Mattijs)
This commit is contained in:
@ -26,7 +26,7 @@ Application
|
||||
foamVersionString.C
|
||||
|
||||
Description
|
||||
Print the FOAMversion string.
|
||||
Print the OpenFOAM version strings.
|
||||
Simultaneously the smallest possible program to use a minimal bit of
|
||||
the OpenFOAM library
|
||||
|
||||
@ -37,7 +37,10 @@ Description
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cerr<< "FOAMversion " << Foam::FOAMversion << "\n";
|
||||
std::cerr
|
||||
<< "build " << Foam::FOAMbuild << "\n"
|
||||
<< "version " << Foam::FOAMversion << "\n";
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user