You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.1 KiB
19 lines
1.1 KiB
/*
|
|
* StoRM - Build-in Options
|
|
*
|
|
* This file is parsed by CMake during makefile generation
|
|
* It contains information such as the base path to the test/example data
|
|
*/
|
|
|
|
#ifndef STORM_CUDAPLUGIN_GENERATED_STORMCONFIG_H_
|
|
#define STORM_CUDAPLUGIN_GENERATED_STORMCONFIG_H_
|
|
|
|
// Version Information
|
|
#define STORM_CUDAPLUGIN_VERSION_MAJOR @STORM_CUDAPLUGIN_VERSION_MAJOR@ // The major version of StoRM
|
|
#define STORM_CUDAPLUGIN_VERSION_MINOR @STORM_CUDAPLUGIN_VERSION_MINOR@ // The minor version of StoRM
|
|
#define STORM_CUDAPLUGIN_VERSION_PATCH @STORM_CUDAPLUGIN_VERSION_PATCH@ // The patch version of StoRM
|
|
#define STORM_CUDAPLUGIN_VERSION_COMMITS_AHEAD @STORM_CUDAPLUGIN_VERSION_COMMITS_AHEAD@ // How many commits passed since the tag was last set
|
|
#define STORM_CUDAPLUGIN_VERSION_HASH "@STORM_CUDAPLUGIN_VERSION_HASH@" // The short hash of the git commit this build is bases on
|
|
#define STORM_CUDAPLUGIN_VERSION_DIRTY @STORM_CUDAPLUGIN_VERSION_DIRTY@ // 0 iff there no files were modified in the checkout, 1 else
|
|
|
|
#endif // STORM_CUDAPLUGIN_GENERATED_STORMCONFIG_H_
|