diff options
Diffstat (limited to 'examples/example_03_hello_world_toml')
| -rw-r--r-- | examples/example_03_hello_world_toml/posix.toml | 2 | ||||
| -rw-r--r-- | examples/example_03_hello_world_toml/win64.toml | 2 |
2 files changed, 2 insertions, 2 deletions
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 |
