aboutsummaryrefslogtreecommitdiff
path: root/src/build_settings.cpp
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2025-05-22 08:08:53 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2025-05-22 08:23:06 -0400
commite35e1dcc7b4814a063c94b9bb02f1e371ae251a5 (patch)
treef9ee896fa89f43671b4e15b5bb48d6fde33361de /src/build_settings.cpp
parentf8bbeb54d4a6ce1e2c17cec68bd6fbeb5e628121 (diff)
Only trim `.odin` from build filenames
Diffstat (limited to 'src/build_settings.cpp')
-rw-r--r--src/build_settings.cpp29
1 files changed, 26 insertions, 3 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp
index 8364bbfbe..b3bbf726b 100644
--- a/src/build_settings.cpp
+++ b/src/build_settings.cpp
@@ -2209,11 +2209,34 @@ gb_internal bool init_build_paths(String init_filename) {
while (output_name.len > 0 && (output_name[output_name.len-1] == '/' || output_name[output_name.len-1] == '\\')) {
output_name.len -= 1;
}
+ // Only trim the extension if it's an Odin source file.
+ // This lets people build folders with extensions or files beginning with dots.
+ if (path_extension(output_name) == ".odin" && !path_is_directory(output_name)) {
+ output_name = remove_extension_from_path(output_name);
+ }
output_name = remove_directory_from_path(output_name);
- output_name = remove_extension_from_path(output_name);
output_name = copy_string(ha, string_trim_whitespace(output_name));
- output_path = path_from_string(ha, output_name);
-
+ // This is `path_from_string` without the extension trimming.
+ Path res = {};
+ if (output_name.len > 0) {
+ String fullpath = path_to_full_path(ha, output_name);
+ defer (gb_free(ha, fullpath.text));
+
+ res.basename = directory_from_path(fullpath);
+ res.basename = copy_string(ha, res.basename);
+
+ if (path_is_directory(fullpath)) {
+ if (res.basename.len > 0 && res.basename.text[res.basename.len - 1] == '/') {
+ res.basename.len--;
+ }
+ } else {
+ isize name_start = (res.basename.len > 0) ? res.basename.len + 1 : res.basename.len;
+ res.name = substring(fullpath, name_start, fullpath.len);
+ res.name = copy_string(ha, res.name);
+ }
+ }
+ output_path = res;
+
// Note(Dragos): This is a fix for empty filenames
// Turn the trailing folder into the file name
if (output_path.name.len == 0) {