25 lines
622 B
JSON
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
|
|
}
|
|
} |