add visual studio plugin

This commit is contained in:
Juraj Michalek
2014-04-21 20:18:17 +02:00
parent 5094926ec7
commit ce63bacd4b
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
apply plugin: 'c'
apply plugin: 'visual-studio'
executables {
main {
}
}

View File

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