add hello linux package

This commit is contained in:
Juraj Michalek
2014-12-06 16:38:07 +01:00
parent 04e3383235
commit c45f4800d0
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
apply plugin: 'cpp'
plugins {
id "nebula.os-package" version "2.0.3"
}
executables {
main
}

View File

@@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main() {
cout << "Hello FI MUNI!" << endl;
return 0;
}