summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/example_01_hello_world/posix.json2
-rw-r--r--examples/example_01_hello_world/win64.json2
-rw-r--r--examples/example_02_libnebuild/posix.json2
-rw-r--r--examples/example_02_libnebuild/win64.json2
-rw-r--r--examples/example_03_hello_world_toml/posix.toml2
-rw-r--r--examples/example_03_hello_world_toml/win64.toml2
6 files changed, 6 insertions, 6 deletions
diff --git a/examples/example_01_hello_world/posix.json b/examples/example_01_hello_world/posix.json
index 09cbef7..197e4a2 100644
--- a/examples/example_01_hello_world/posix.json
+++ b/examples/example_01_hello_world/posix.json
@@ -3,7 +3,7 @@
"compiler_std": "c++20",
"headers_path": ["lib"],
"sources_path": ["hello_world.cc"],
- "output_name": "hello_world.elf",
+ "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
index 4af5bdd..4545228 100644
--- a/examples/example_01_hello_world/win64.json
+++ b/examples/example_01_hello_world/win64.json
@@ -3,7 +3,7 @@
"compiler_std": "c++20",
"headers_path": ["lib"],
"sources_path": ["hello_world.cc"],
- "output_name": "hello_world.elf",
+ "output_name": "./hello_world.elf",
"compiler_flags": ["-fPIC"],
"cpp_macros": ["FOO_MACRO"],
"run_after_build": true
diff --git a/examples/example_02_libnebuild/posix.json b/examples/example_02_libnebuild/posix.json
index 809cb67..d7ef767 100644
--- a/examples/example_02_libnebuild/posix.json
+++ b/examples/example_02_libnebuild/posix.json
@@ -8,7 +8,7 @@
"sources_path": [
"libnebuild.cc"
],
- "output_name": "libnebuild.elf",
+ "output_name": "./libnebuild.elf",
"compiler_flags": [
"-L/usr/lib",
"-lNeBuildKit"
diff --git a/examples/example_02_libnebuild/win64.json b/examples/example_02_libnebuild/win64.json
index dcd1142..094208b 100644
--- a/examples/example_02_libnebuild/win64.json
+++ b/examples/example_02_libnebuild/win64.json
@@ -8,7 +8,7 @@
"sources_path": [
"libbtb.cc"
],
- "output_name": "libbtb.exe",
+ "output_name": "./libbtb.exe",
"compiler_flags": [
"-lNeBuild"
],
diff --git a/examples/example_03_hello_world_toml/posix.toml b/examples/example_03_hello_world_toml/posix.toml
index e8595d4..a384ddb 100644
--- a/examples/example_03_hello_world_toml/posix.toml
+++ b/examples/example_03_hello_world_toml/posix.toml
@@ -2,7 +2,7 @@ compiler_path = "clang++"
compiler_std = "c++20"
headers_path = [ "lib" ]
sources_path = [ "hello_world.cc" ]
-output_name = "hello_world.elf"
+output_name = "./hello_world.elf"
compiler_flags = [ "-fPIC" ]
cpp_macros = [ "FOO_MACRO" ]
run_after_build = true
diff --git a/examples/example_03_hello_world_toml/win64.toml b/examples/example_03_hello_world_toml/win64.toml
index c8001a4..6f30476 100644
--- a/examples/example_03_hello_world_toml/win64.toml
+++ b/examples/example_03_hello_world_toml/win64.toml
@@ -2,7 +2,7 @@ compiler_path = "x86_64-w64-mingw32-g++"
compiler_std = "c++20"
headers_path = [ "lib" ]
sources_path = [ "hello_world.cc" ]
-output_name = "hello_world.elf"
+output_name = "./hello_world.elf"
compiler_flags = [ "-fPIC" ]
cpp_macros = [ "FOO_MACRO" ]
run_after_build = true