An error occurred while loading the file. Please try again.
-
Christian Godenschwager authored
If you have access to the old closed source waLBerla repository, you may restore the complete history with the following command git fetch git@i10git.cs.fau.de:software/walberla.git 'refs/replace/*:refs/replace/*'
bf76deb1
Forked from
waLBerla / waLBerla
711 commits behind the upstream repository.
waLBerlaBuildInfo.in.cpp 914 B
//======================================================================================================================
/*!
* \file waLBerlaBuildInfo.cpp
* \brief Configured by CMake, contains information about the current build
*/
//======================================================================================================================
namespace walberla {
namespace core {
namespace buildinfo {
const char * gitSHA1() { return "@WALBERLA_GIT_SHA1@"; }
const char * buildType() { return "@WALBERLA_BUILD_TYPE@"; }
const char * compilerFlags() { return "@WALBERLA_COMPILER_FLAGS@"; }
const char * buildMachine() { return "@WALBERLA_BUILD_MACHINE@"; }
const char * sourceDir() { return "@walberla_SOURCE_DIR@"; }
const char * binaryDir() { return "@walberla_BINARY_DIR@"; }
} // namespace buildinfo
} // namespace core
} // namespace walberla