mirror of https://github.com/auygun/kaliber.git
37 lines
582 B
JSON
37 lines
582 B
JSON
|
{
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Linux",
|
||
|
"includePath": [
|
||
|
"${workspaceFolder}/**"
|
||
|
],
|
||
|
"defines": [
|
||
|
"OS_LINUX"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "Mac",
|
||
|
"includePath": [
|
||
|
"${workspaceFolder}/**"
|
||
|
],
|
||
|
"defines": [
|
||
|
"OS_MAC"
|
||
|
],
|
||
|
"macFrameworkPath": [
|
||
|
"/System/Library/Frameworks",
|
||
|
"/Library/Frameworks"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "Win32",
|
||
|
"includePath": [
|
||
|
"${workspaceFolder}/**"
|
||
|
],
|
||
|
"defines": [
|
||
|
"OS_WIN"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"version": 4
|
||
|
}
|