update definition of C++ gradle projects

This commit is contained in:
Juraj Michalek
2014-11-04 20:02:59 +01:00
parent 25304c80bc
commit 89ff0321cb
18 changed files with 2 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
apply plugin: 'c'
executables {
main {
}
}

View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main(int argc, char** argv){
printf("Hello FI MUNI!\n");
return 0;
}