32 lines
		
	
	
		
			882 B
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			882 B
		
	
	
	
		
			JSON
		
	
	
	
| {
 | |
|     "configurations": [
 | |
|         {
 | |
|             "name": "Mac",
 | |
|             "includePath": [
 | |
|                 "${workspaceFolder}/src/**"
 | |
|             ],
 | |
|             "defines": [
 | |
|                 "TARGET_OS_MAC"
 | |
|             ],
 | |
|             "macFrameworkPath": [
 | |
|                 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
 | |
|             ],
 | |
|             "compilerPath": "/usr/bin/clang",
 | |
|             "cStandard": "c11",
 | |
|             "cppStandard": "c++14",
 | |
|             "intelliSenseMode": "clang-x64"
 | |
|         },
 | |
|         {
 | |
|             "name": "Linux",
 | |
|             "includePath": [
 | |
|                 "${workspaceFolder}/src/**"
 | |
|             ],
 | |
|             "defines": [],
 | |
|             "compilerPath": "/usr/bin/gcc",
 | |
|             "cStandard": "c11",
 | |
|             "cppStandard": "c++14",
 | |
|             "intelliSenseMode": "clang-x64"
 | |
|         }
 | |
|     ],
 | |
|     "version": 4
 | |
| } |