File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 22 "name" : " SteamRT Sniper SDK" ,
33 "image" : " registry.gitlab.steamos.cloud/steamrt/sniper/sdk:latest" ,
44 "updateContentCommand" : " git submodule update --init --recursive" ,
5- "postCreateCommand" : " cmake -S . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo && cmake --build build -j$(nproc)" ,
5+ "postCreateCommand" : " cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -G Ninja && cmake --build build -j$(nproc)" ,
66 "customizations" : {
77 "vscode" : {
88 "extensions" : [
Original file line number Diff line number Diff line change 1717 "label" : " build" ,
1818 "type" : " shell" ,
1919 "group" : " build" ,
20- "command" : " cmake -S . -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build -j$(nproc)" ,
20+ "command" : " cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -G Ninja && cmake --build build -j$(nproc)" ,
2121 },
2222 {
2323 "label" : " build-api" ,
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ include("makefiles/shared.cmake")
77
88set (CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>" )
99
10+ set (FUNCHOOK_BUILD_TESTS OFF CACHE BOOL "Disable building tests for funchook." FORCE)
11+ set (ZYDIS_BUILD_EXAMPLES OFF CACHE BOOL "Disable building examples for Zydis." FORCE)
12+ set (ZYDIS_BUILD_TOOLS OFF CACHE BOOL "Disable building tools for Zydis." FORCE)
13+ set (DYNOHOOK_BUILD_TESTS OFF CACHE BOOL "Disable building tests for funchook." FORCE)
14+
1015add_subdirectory (libraries/spdlog)
1116add_subdirectory (libraries/dyncall)
1217add_subdirectory (libraries/funchook)
You can’t perform that action at this time.
0 commit comments