removed comments

This commit is contained in:
Alessandro Mauri 2025-01-31 23:15:40 +01:00
parent d94e430807
commit 92614e4d8b

View File

@ -1,55 +1,20 @@
{ {
// Language version of C3.
"langrev": "1", "langrev": "1",
// Warnings used for all targets.
"warnings": ["no-unused"], "warnings": ["no-unused"],
// Directories where C3 library files may be found.
"dependency-search-paths": ["lib", "../../Programs/Source/c3-vendor/libraries"], "dependency-search-paths": ["lib", "../../Programs/Source/c3-vendor/libraries"],
// Libraries to use for all targets.
"dependencies": ["raylib55", "schrift", "grapheme", "mqoi"], "dependencies": ["raylib55", "schrift", "grapheme", "mqoi"],
"features": [ "features": [],
// See rcore.c3
//"SUPPORT_INTERNAL_MEMORY_MANAGEMENT",
//"SUPPORT_STANDARD_FILEIO",
//"SUPPORT_FILE_SYSTEM_FUNCTIONS",
//"SUPPORT_DATA_ENCODER",
// See text.c3
//"SUPPORT_TEXT_CODEPOINTS_MANAGEMENT",
//"SUPPORT_TEXT_C_STRING_MANAGEMENT",
//"SUPPORT_RANDOM_GENERATION",
//"SUPPORT_RAYGUI",
//"RAYGUI_NO_ICONS",
//"RAYGUI_CUSTOM_ICONS",
],
// Authors, optionally with email.
"authors": ["Alessandro Mauri <ale@shitposting.expert>"], "authors": ["Alessandro Mauri <ale@shitposting.expert>"],
// Version using semantic versioning.
"version": "0.1.0", "version": "0.1.0",
// Sources compiled for all targets.
"sources": ["src/**"], "sources": ["src/**"],
// C sources if the project also compiles C sources
// relative to the project file.
// "c-sources": [ "csource/**" ],
// Include directories for C sources relative to the project file.
// "c-include-dirs": [ "csource/include" ],
// Output location, relative to project file.
"output": "build", "output": "build",
// Architecture and OS target. "target": "linux-x64",
// You can use 'c3c --list-targets' to list all valid targets.
// "target": "windows-x64",
// Targets.
"targets": { "targets": {
"ugui": { "ugui": {
// Executable or library.
"type": "executable" "type": "executable"
// Additional libraries, sources
// and overrides of global settings here.
} }
}, },
// Global settings. "cpu": "native",
// CPU name, used for optimizations in the LLVM backend. "opt": "O0",
"cpu": "generic", "debug-info": "full"
// Optimization: "O0", "O1", "O2", "O3", "O4", "O5", "Os", "Oz".
"opt": "O0"
// See resources/examples/project_all_settings.json and 'c3c --list-project-properties' to see more properties.
} }