Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: windows-clang
os: windows-latest
os-name: Windows
compiler: clang-16
compiler: clang-17
- name: linux-clang
os: ubuntu-latest
os-name: Linux
Expand Down
5 changes: 1 addition & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "Extern/Bandit"]
path = Extern/Bandit
url = https://github.com/banditcpp/bandit
url = https://github.com/banditcpp/bandit.git
[submodule "Extern/spdlog"]
path = Extern/spdlog
url = https://github.com/gabime/spdlog.git
Expand All @@ -16,9 +16,6 @@
[submodule "Extern/utfcpp"]
path = Extern/utfcpp
url = https://github.com/nemtrif/utfcpp.git
[submodule "Extern/simdjson"]
path = Extern/simdjson
url = https://github.com/simdjson/simdjson.git
[submodule "Extern/yyjson"]
path = Extern/yyjson
url = https://github.com/ibireme/yyjson.git
Expand Down
13 changes: 12 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,18 @@
"name": "Test",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/Build/Bin/RiftCoreTests.exe",
"program": "${workspaceFolder}/Build/Bin/PipeTests.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false
},
{
"name": "Test (Linux)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/Build/Bin/PipeTests",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
Expand Down
Loading