Skip to content

Commit 8f756e7

Browse files
committed
adding the project files
1 parent 7d5af81 commit 8f756e7

File tree

111 files changed

+11779
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+11779
-0
lines changed

BuildScheme.h

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#ifndef BUILDSCHEME_H
2+
#define BUILDSCHEME_H
3+
// (c) Copyright
4+
// ALL RIGHTS RESERVED
5+
/**
6+
* @file BuildScheme.h
7+
* @brief defines how the project being demacrofied can be build
8+
* @version 1.0
9+
* @author Aditya Kumar
10+
* @note
11+
* compiles with g++-4.5 or higher,
12+
* for compiling pass -std=c++0x to the compiler
13+
*/
14+
15+
#include<string>
16+
17+
struct BuildScheme {
18+
/// @var makeCommand
19+
/// @brief the command string to be invoked for compiling the package
20+
/// to be sent to the Parser class(as of now)
21+
std::string makeCommand;
22+
};
23+
24+
#endif // BUILDSCHEME_H

0 commit comments

Comments
 (0)