forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeLiteIDE-MSW.workspace
More file actions
40 lines (40 loc) · 1.31 KB
/
CodeLiteIDE-MSW.workspace
File metadata and controls
40 lines (40 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"workspace_type": "File System Workspace",
"name": "CodeLiteIDE-MSW",
"configs": [
{
"name": "Debug",
"targets": [
[
"build",
"cd $(WorkspacePath)/.build-debug && mingw32-make -j32 install"
],
[
"clean",
"cd $(WorkspacePath)/.build-debug && mingw32-make -j32 clean"
]
],
"file_extensions": "*.cpp;*.c;*.txt;*.json;*.hpp;*.cc;*.cxx;*.xml;*.h;*.wxcp;*.py;*.php;*.rb;*.html;*.js;*.ts;*.rs;*.iss;*.md;*.bat",
"excludeFilesPattern": "*.o;*.pyc;*.obj;*.workspace;*.o.d;*.exe;*.dll;*.project",
"excludePaths": ".build-release;.build-debug",
"debugger": "lldb-dap"
},
{
"name": "Release",
"targets": [
[
"build",
"cd $(WorkspacePath)/.build-release && mingw32-make -j24 install"
],
[
"clean",
"cd $(WorkspacePath)/.build-release && mingw32-make -j24 clean && rm -fr install"
]
],
"file_extensions": "*.cpp;*.c;*.txt;*.json;*.hpp;*.cc;*.cxx;*.xml;*.h;*.wxcp;*.py;*.php;*.rb;*.html;*.js;*.ts;*.rs;*.iss;*.md;*.bat;*.sh;*.xrc;*.cmake;*.rc;*.plist;*.in",
"excludeFilesPattern": "*.o;*.pyc;*.obj;*.workspace;*.o.d;*.exe;*.dll;*.project",
"excludePaths": ".build-release;.build-debug",
"debugger": ""
}
]
}