Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1496793
version.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Size
1 KB
Referenced Files
None
Subscribers
None
version.cpp
View Options
//===-- config/version.cpp --------------------------------------*- C++ -*-===//
//
// The RoSA Framework
//
//===----------------------------------------------------------------------===//
///
/// \file config/version.cpp
///
/// \author David Juhasz (david.juhasz@tuwien.ac.at)
///
/// \date 2017
///
/// \brief Implementation for rosa/config/version.h.
///
//===----------------------------------------------------------------------===//
#include
"rosa/config/version.h"
#include
<sstream>
namespace
rosa
{
std
::
string
library_string
(
void
)
{
return
PACKAGE_STRING
;
}
std
::
string
version
(
void
)
{
return
PACKAGE_VERSION
;
}
std
::
string
verbose_version
(
void
)
{
std
::
stringstream
SS
;
SS
<<
PACKAGE_STRING
<<
std
::
endl
<<
"Built by "
<<
CMAKE_GENERATOR
<<
" with "
<<
CMAKE_CXX_COMPILER_ID
<<
' '
<<
CMAKE_CXX_COMPILER_VERSION
<<
std
::
endl
<<
"on a(n) "
<<
CMAKE_SYSTEM
<<
" system."
<<
std
::
endl
<<
"Build date: "
<<
BUILD_DATE
<<
std
::
endl
<<
"Package name: "
<<
PACKAGE_NAME
<<
std
::
endl
<<
"Package version: "
<<
PACKAGE_VERSION
<<
std
::
endl
<<
"Report issues: "
<<
PACKAGE_BUGREPORT
<<
std
::
endl
;
return
SS
.
str
();
}
}
// End namespace rosa
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sun, Mar 1, 8:59 PM (4 h, 46 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
289158
Default Alt Text
version.cpp (1 KB)
Attached To
Mode
R20 SoC_Rosa_repo
Attached
Detach File
Event Timeline
Log In to Comment