File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : [
3
+ {
4
+ "name" : " Linux" ,
5
+ "includePath" : [
6
+ " ${workspaceFolder}/include/**"
7
+ ],
8
+ "defines" : [],
9
+ "compilerPath" : " /usr/bin/clang" ,
10
+ "cStandard" : " c17" ,
11
+ "cppStandard" : " c++20" ,
12
+ "intelliSenseMode" : " linux-clang-x64" ,
13
+ "browse" : {
14
+ "limitSymbolsToIncludedHeaders" : true
15
+ },
16
+ "compileCommands" : " ${workspaceFolder}/build/compile_commands.json"
17
+ }
18
+ ],
19
+ "version" : 4
20
+ }
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ project("PythonMonkey"
11
11
set (CMAKE_CXX_STANDARD 20)
12
12
set (CMAKE_CXX_STANDARD_REQUIRED ON )
13
13
set (CMAKE_CXX_EXTENSIONS OFF )
14
+ set (CMAKE_EXPORT_COMPILE_COMMANDS ON )
14
15
15
16
# Add an external; appends to `PYTHONMONKEY_EXTERNAL_FILES` in the parent scope.
16
17
function (pythonmonkey_add_external PYTHONMONKEY_EXTERNAL)
You can’t perform that action at this time.
0 commit comments