Files
cpp-project-template/third_party/microprofile/microprofile-dev.sublime-project

53 lines
1.0 KiB
Plaintext
Raw Normal View History

2025-08-25 11:21:22 +08:00
{
"settings": {
"ClangFormat": {
"format_on_save": false
}
},
"folders":
[
{
"path": "."
}
],
"build_systems":
[
{
"name":"workbench",
"osx" : {
"shell_cmd": "make",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/workbench"
},
"linux" : {
"shell_cmd": "make",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/workbench"
}
},
{
"name":"dynamic_instrument",
"osx" : {
"shell_cmd": "make",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/dynamic_instrument"
},
"linux" : {
"shell_cmd": "make",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/dynamic_instrument"
}
},
{
"name":"simple",
"osx" : {
"shell_cmd": "make embed",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/simple"
}
}
]
}