Correctly show macOS version settings for project.json

This commit is contained in:
Christoffer Lerno
2024-08-13 10:25:07 +02:00
parent 09da17dab7
commit ddecf2d5f0

View File

@@ -25,6 +25,8 @@ const char *project_default_keys[][2] = {
{"linker-search-paths", "Linker search paths."},
{"link-args", "Linker arguments for all targets."},
{"link-libc", "Link libc (default: true)."},
{"macos-min-version", "Set the minimum MacOS version to compile for."},
{"macos-sdk-version", "Set the MacOS SDK compiled for." },
{"macossdk", "Set the directory for the MacOS SDK for cross compilation."},
{"memory-env", "Set the memory environment: normal, small, tiny, none."},
{"no-entry", "Do not generate (or require) a main function."},
@@ -92,6 +94,8 @@ const char* project_target_keys[][2] = {
{"link-args", "Additional linker arguments for the target."},
{"link-args-override", "Linker arguments for this target, overriding global settings."},
{"link-libc", "Link libc (default: true)."},
{"macos-min-version", "Set the minimum MacOS version to compile for."},
{"macos-sdk-version", "Set the MacOS SDK compiled for." },
{"macossdk", "Set the directory for the MacOS SDK for cross compilation."},
{"memory-env", "Set the memory environment: normal, small, tiny, none."},
{"no-entry", "Do not generate (or require) a main function."},