Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1497690
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
<<
"
\n
Built by "
<<
CMAKE_GENERATOR
<<
" with "
<<
CMAKE_CXX_COMPILER_ID
<<
' '
<<
CMAKE_CXX_COMPILER_VERSION
<<
"
\n
on a(n) "
<<
CMAKE_SYSTEM
<<
" system."
<<
"
\n
Build date: "
<<
BUILD_DATE
<<
"
\n
Package name: "
<<
PACKAGE_NAME
<<
"
\n
Package version: "
<<
PACKAGE_VERSION
<<
"
\n
Report issues: "
<<
PACKAGE_BUGREPORT
;
return
SS
.
str
();
}
}
// End namespace rosa
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sun, Mar 1, 9:38 PM (1 d, 22 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
277183
Default Alt Text
version.cpp (1 KB)
Attached To
Mode
R20 SoC_Rosa_repo
Attached
Detach File
Event Timeline
Log In to Comment