forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeLiteIDE-macOS.workspace
More file actions
48 lines (48 loc) · 1.71 KB
/
CodeLiteIDE-macOS.workspace
File metadata and controls
48 lines (48 loc) · 1.71 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
41
42
43
44
45
46
47
48
{
"workspace_type": "File System Workspace",
"name": "CodeLiteIDE-Linux",
"configs": [
{
"name": "Debug",
"targets": [
[
"Run CMake - Debug",
"mkdir -p .build-debug && cd .build-debug && cmake -DCMAKE_BUILD_TYPE=Debug .. -Wno-dev"
],
[
"build",
"cd .build-debug && make -j12 install"
],
[
"clean",
"cd .build-debug && make -j12 clean"
]
],
"file_extensions": "*.cpp;*.c;*.txt;*.json;*.hpp;*.cc;*.cxx;*.xml;*.h;*.wxcp;*.xrc;*.py",
"excludeFilesPattern": "*.o;*.pyc;*.obj;*.workspace;*.o.d;*.exe;*.dll;*.project",
"excludePaths": "codelite-cli;codelite-icons;codelite-icons-dark;codelite-icons-fresh-farm;codelite_echo;codelite_make;bitmaps;bitmaps-dark;bitmaps-light;.build-debug;.build-release;CallGraph",
"debugger": "GNU gdb debugger"
},
{
"name": "Release",
"targets": [
[
"Run CMake - Release",
"mkdir -p .build-release && cd .build-release && cmake -DCMAKE_BUILD_TYPE=Release .."
],
[
"build",
"cd .build-release && make -j12 install"
],
[
"clean",
"cd .build-release && make -j12 clean"
]
],
"file_extensions": "*.cpp;*.c;*.txt;*.json;*.hpp;*.cc;*.cxx;*.xml;*.h;*.wxcp;.*.xrc;*.cmake;*.rc;*.py;*.md;*.xrc",
"excludeFilesPattern": "*.o;*.pyc;*.obj;*.workspace;*.o.d;*.exe;*.dll;*.project",
"excludePaths": "codelite-cli;codelite-icons;codelite-icons-dark;codelite-icons-fresh-farm;codelite_echo;codelite_make;bitmaps;bitmaps-dark;bitmaps-light;.build-debug;.build-release;CallGraph",
"debugger": "GNU gdb debugger"
}
]
}