blob: 43509bfeb433a3d15f65bbe39ce15a53d8b0d280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// the addons must provide the option and the toolchain of this project
#ifndef MYOPTION
# error the option of the custom-include addon is not found!
#endif
#ifndef MY_C6000
# error the toolchain of the custom-toolchain addon is not used!
#endif
#ifndef MY_C6000_TOOL
# error the tool module of the custom-toolchain addon is not used!
#endif
int main(int argc, char** argv) {
return 0;
}
|