mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-18 09:37:04 +01:00
add hello linux package
This commit is contained in:
8
gradle-cpp-plugin/04-hello-linux-package/build.gradle
Normal file
8
gradle-cpp-plugin/04-hello-linux-package/build.gradle
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
apply plugin: 'cpp'
|
||||||
|
plugins {
|
||||||
|
id "nebula.os-package" version "2.0.3"
|
||||||
|
}
|
||||||
|
|
||||||
|
executables {
|
||||||
|
main
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
cout << "Hello FI MUNI!" << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user