Files
TransPyC/BenchmarkProject/project.json
2026-06-16 16:09:42 +08:00

25 lines
622 B
JSON

{
"$schema": "https://raw.githubusercontent.com/TermiNexus/TransPyC/main/schemas/project-schema.json",
"name": "BenchmarkProject",
"version": "1.0.0",
"source_dir": "./App",
"temp_dir": "./temp",
"output_dir": "./output",
"compiler": {
"cmd": "llc",
"flags": ["-filetype=obj"]
},
"linker": {
"cmd": "clang++",
"flags": ["-lmsvcrt", "-lucrt", "-lpthread"],
"output": "BenchmarkProject.exe"
},
"includes": [
"./includes"
],
"options": {
"slice_level": 3,
"target": "llvm",
"strict_mode": true
}
}