summaryrefslogtreecommitdiffhomepage
path: root/examples/example_01
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-29 10:56:20 +0200
committerGitHub <noreply@github.com>2025-05-29 10:56:20 +0200
commit50c2c9773d5660b1497a1132ffa96a7ab10d9c45 (patch)
tree9e38258948019249d64b90a27707ad3ed36bb186 /examples/example_01
parentdab3762388278d1efadec1040a8f5c5ebd286b24 (diff)
parent61fc36d7fb3d147b577c1d25a72e22e45f6c6c83 (diff)
Merge pull request #2 from nekernel-org/dev
0.0.2
Diffstat (limited to 'examples/example_01')
-rw-r--r--examples/example_01/example.cc8
-rw-r--r--examples/example_01/posix.json10
-rw-r--r--examples/example_01/win64.json10
3 files changed, 0 insertions, 28 deletions
diff --git a/examples/example_01/example.cc b/examples/example_01/example.cc
deleted file mode 100644
index aa2d8b0..0000000
--- a/examples/example_01/example.cc
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <string>
-#include <iostream>
-
-int main(int argc, char** argv)
-{
- std::cout << "hello, world!\n";
- return 0;
-}
diff --git a/examples/example_01/posix.json b/examples/example_01/posix.json
deleted file mode 100644
index 17a6022..0000000
--- a/examples/example_01/posix.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "compiler_path": "g++",
- "compiler_std": "c++20",
- "headers_path": ["lib"],
- "sources_path": ["example.cc"],
- "output_name": "example.elf",
- "compiler_flags": ["-fPIC"],
- "cpp_macros": ["FOO_MACRO"],
- "run_after_build": true
-}
diff --git a/examples/example_01/win64.json b/examples/example_01/win64.json
deleted file mode 100644
index 1712d8b..0000000
--- a/examples/example_01/win64.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "compiler_path": "x86_64-w64-mingw32-g++",
- "compiler_std": "c++20",
- "headers_path": ["lib"],
- "sources_path": ["example.cc"],
- "output_name": "example.elf",
- "compiler_flags": ["-fPIC"],
- "cpp_macros": ["FOO_MACRO"],
- "run_after_build": true
-}