Skip to content

Commit

Permalink
python updates, build using meson and ninja
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Gordon committed Jun 22, 2023
1 parent c372d76 commit 7b9b2e4
Show file tree
Hide file tree
Showing 55 changed files with 504 additions and 845 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
core/build/*.d
core/source/build
*.o
*.obj
*.pyc
Expand Down
6 changes: 3 additions & 3 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-x64",
"configurationProvider": "ms-vscode.makefile-tools"
"configurationProvider": "mesonbuild.mesonbuild"
},
{
"name": "WindowsLLVM",
Expand All @@ -41,7 +41,7 @@
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
"configurationProvider": "mesonbuild.mesonbuild"
},
{
"name": "LinuxGCC",
Expand All @@ -61,7 +61,7 @@
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
"configurationProvider": "mesonbuild.mesonbuild"
}
],
"version": 4
Expand Down
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/core/build/tw3d",
"args": ["-n","1","--unit-test","species"],
"cwd": "${workspaceFolder}/core/build/"
}
]
}
10 changes: 8 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
"typeinfo": "cpp",
"utility": "cpp",
"valarray": "cpp",
"iomanip": "cpp"
}
"iomanip": "cpp",
"iterator": "cpp",
"xtree": "cpp",
"regex": "cpp",
"xstring": "cpp",
"xutility": "cpp"
},
"mesonbuild.configureOnOpen": true
}
Loading

0 comments on commit 7b9b2e4

Please sign in to comment.