-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7929d26
commit ab3e85f
Showing
39 changed files
with
660 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,6 @@ trim_trailing_whitespace = true | |
|
||
[*.y*ml] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.json] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,88 @@ | ||
{ | ||
"version": 3, | ||
"configurePresets": [ | ||
{ | ||
"name": "clang-debug", | ||
"displayName": "Debug Clang", | ||
"description": "Use Clang toolchain", | ||
"generator": "Ninja", | ||
"binaryDir": "build-clang-debug/", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"CMAKE_C_COMPILER": "clang", | ||
"CMAKE_CXX_COMPILER": "clang++", | ||
"CMAKE_CXX_FLAGS": "-stdlib=libc++", | ||
"CMAKE_EXE_LINKER_FLAGS": "-fuse-ld=lld", | ||
"CMAKE_SHARED_LINKER_FLAGS": "-fuse-ld=lld" | ||
} | ||
}, | ||
{ | ||
"name": "gcc-debug", | ||
"displayName": "Debug G++", | ||
"description": "Use gcc toolchain", | ||
"generator": "Ninja", | ||
"binaryDir": "build-gcc-debug/", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"CMAKE_C_COMPILER": "gcc", | ||
"CMAKE_CXX_COMPILER": "g++" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "clang-build-debug", | ||
"displayName": "Build Clang Debug", | ||
"configurePreset": "clang-debug" | ||
}, | ||
{ | ||
"name": "gcc-build-debug", | ||
"displayName": "Build G++ Debug", | ||
"configurePreset": "gcc-debug" | ||
} | ||
], | ||
"testPresets": [ | ||
{ | ||
"name": "clang-test", | ||
"displayName": "Test Clang", | ||
"configurePreset": "clang-debug" | ||
}, | ||
{ | ||
"name": "gcc-test", | ||
"displayName": "Test G++", | ||
"configurePreset": "gcc-debug" | ||
} | ||
] | ||
"version": 3, | ||
"configurePresets": [ | ||
{ | ||
"name": "clang-debug", | ||
"displayName": "Clang Debug", | ||
"description": "Use Clang toolchain", | ||
"binaryDir": "build-clang-debug/", | ||
"generator": "Ninja", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"CMAKE_C_COMPILER": "clang", | ||
"CMAKE_CXX_COMPILER": "clang++", | ||
"CMAKE_CXX_FLAGS": "-stdlib=libc++", | ||
"CMAKE_EXE_LINKER_FLAGS": "-fuse-ld=lld", | ||
"CMAKE_SHARED_LINKER_FLAGS": "-fuse-ld=lld", | ||
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", | ||
"VCPKG_OVERLAY_TRIPLETS": "${sourceDir}/vcpkg/triplets/", | ||
"VCPKG_TARGET_TRIPLET": "x64-linux-clang" | ||
} | ||
}, | ||
{ | ||
"name": "clang-release", | ||
"displayName": "Clang Release", | ||
"inherits": "clang-debug", | ||
"binaryDir": "build-clang-release/", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "RelWithDebInfo" | ||
} | ||
}, | ||
{ | ||
"name": "gcc-debug", | ||
"displayName": "G++ Debug", | ||
"description": "Use gcc toolchain", | ||
"binaryDir": "build-gcc-debug/", | ||
"generator": "Ninja", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"CMAKE_C_COMPILER": "gcc", | ||
"CMAKE_CXX_COMPILER": "g++", | ||
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" | ||
} | ||
}, | ||
{ | ||
"name": "gcc-release", | ||
"displayName": "G++ Release", | ||
"inherits": "gcc-debug", | ||
"binaryDir": "build-gcc-release/", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "RelWithDebInfo" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "clang-build-debug", | ||
"displayName": "Build Clang Debug", | ||
"configurePreset": "clang-debug" | ||
}, | ||
{ | ||
"name": "clang-build-release", | ||
"displayName": "Build Clang Release", | ||
"configurePreset": "clang-release" | ||
}, | ||
{ | ||
"name": "gcc-build-debug", | ||
"displayName": "Build G++ Debug", | ||
"configurePreset": "gcc-debug" | ||
}, | ||
{ | ||
"name": "gcc-build-release", | ||
"displayName": "Build G++ Release", | ||
"configurePreset": "gcc-release" | ||
} | ||
], | ||
"testPresets": [ | ||
{ | ||
"name": "clang-test", | ||
"displayName": "Test Clang", | ||
"configurePreset": "clang-debug" | ||
}, | ||
{ | ||
"name": "gcc-test", | ||
"displayName": "Test G++", | ||
"configurePreset": "gcc-debug" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../vcpkg/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"default-registry": { | ||
"kind": "git", | ||
"baseline": "14542c8ad9b6bcb9da755884ab823605c3300b68", | ||
"repository": "https://github.com/microsoft/vcpkg" | ||
}, | ||
"registries": [ | ||
{ | ||
"kind": "artifact", | ||
"location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip", | ||
"name": "microsoft" | ||
} | ||
] | ||
} |
Oops, something went wrong.