summaryrefslogtreecommitdiffhomepage
path: root/examples/example_01_hello_world
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-19 14:15:06 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-19 14:15:06 +0100
commit2ae776318e6c92079528c35f3f5faf81f54fa10e (patch)
tree80ce9d565cf53927243d6d1f6e8c9006e2b790db /examples/example_01_hello_world
parentdb5d7e371e7183e4b5db26632ae2f511db4e0e41 (diff)
chore: Add MailMap, rename `examples` to `example`.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'examples/example_01_hello_world')
-rw-r--r--examples/example_01_hello_world/hello_world.cc7
-rw-r--r--examples/example_01_hello_world/posix.json10
-rw-r--r--examples/example_01_hello_world/win64.json10
3 files changed, 0 insertions, 27 deletions
diff --git a/examples/example_01_hello_world/hello_world.cc b/examples/example_01_hello_world/hello_world.cc
deleted file mode 100644
index ae47ce8..0000000
--- a/examples/example_01_hello_world/hello_world.cc
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <iostream>
-#include <string>
-
-int main(int argc, char** argv) {
- std::cout << "hello, world!\n";
- return 0;
-}
diff --git a/examples/example_01_hello_world/posix.json b/examples/example_01_hello_world/posix.json
deleted file mode 100644
index 197e4a2..0000000
--- a/examples/example_01_hello_world/posix.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "compiler_path": "clang++",
- "compiler_std": "c++20",
- "headers_path": ["lib"],
- "sources_path": ["hello_world.cc"],
- "output_name": "./hello_world.elf",
- "compiler_flags": ["-fPIC"],
- "cpp_macros": ["FOO_MACRO"],
- "run_after_build": true
-}
diff --git a/examples/example_01_hello_world/win64.json b/examples/example_01_hello_world/win64.json
deleted file mode 100644
index 4545228..0000000
--- a/examples/example_01_hello_world/win64.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "compiler_path": "x86_64-w64-mingw32-g++",
- "compiler_std": "c++20",
- "headers_path": ["lib"],
- "sources_path": ["hello_world.cc"],
- "output_name": "./hello_world.elf",
- "compiler_flags": ["-fPIC"],
- "cpp_macros": ["FOO_MACRO"],
- "run_after_build": true
-}