Allow precompiled resources with -resource:foo.res

And add them to the magic new feature.
This commit is contained in:
Jeroen van Rijn
2024-07-10 15:09:13 +02:00
parent 8dc4eca4d2
commit cc73e06a46
3 changed files with 21 additions and 8 deletions

View File

@@ -152,6 +152,13 @@ gb_internal String path_to_string(gbAllocator a, Path path) {
return res;
}
gb_internal String quote_path(gbAllocator a, Path path) {
String temp = path_to_string(a, path);
String quoted = concatenate3_strings(a, str_lit("\""), temp, str_lit("\""));
gb_free(a, temp.text);
return quoted;
}
// NOTE(Jeroen): Naively turns a Path into a string, then normalizes it using `path_to_full_path`.
gb_internal String path_to_full_path(gbAllocator a, Path path) {
String temp = path_to_string(heap_allocator(), path);