First Commit
This commit is contained in:
11
externals/cryptopp-cmake/.vscode/extensions.json
vendored
Normal file
11
externals/cryptopp-cmake/.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"cheshirekow.cmake-format",
|
||||
"donjayamanne.githistory",
|
||||
"editorconfig.editorconfig",
|
||||
"ms-vscode.cmake-tools",
|
||||
"redhat.vscode-yaml",
|
||||
"stkb.rewrap",
|
||||
"streetsidesoftware.code-spell-checker",
|
||||
]
|
||||
}
|
||||
18
externals/cryptopp-cmake/.vscode/launch.json
vendored
Normal file
18
externals/cryptopp-cmake/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
// 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": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"name": "cryptest",
|
||||
"program": "${workspaceFolder}/build/cryptopp/cryptest",
|
||||
"args": [
|
||||
"v"
|
||||
],
|
||||
"cwd": "${workspaceFolder}/build"
|
||||
}
|
||||
]
|
||||
}
|
||||
37
externals/cryptopp-cmake/.vscode/settings.json
vendored
Normal file
37
externals/cryptopp-cmake/.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"editor.rulers": [
|
||||
80,
|
||||
100
|
||||
],
|
||||
"rewrap.wrappingColumn": 80,
|
||||
"rewrap.autoWrap.enabled": true,
|
||||
"editor.detectIndentation": false,
|
||||
"editor.formatOnPaste": false,
|
||||
"editor.formatOnSave": true,
|
||||
"git.autofetch": true,
|
||||
"git.confirmSync": false,
|
||||
"git.enableSmartCommit": true,
|
||||
"editor.bracketPairColorization.enabled": true,
|
||||
"workbench.colorCustomizations": {
|
||||
"[Default Dark+]": {
|
||||
"editorBracketHighlight.foreground3": "#9CDCFE"
|
||||
}
|
||||
},
|
||||
"cmake.configureOnOpen": true,
|
||||
"cmake.preferredGenerators": [
|
||||
"Ninja"
|
||||
],
|
||||
"cmake.configureArgs": [
|
||||
"-DCMAKE_INSTALL_PREFIX=${workspaceFolder}/build/install",
|
||||
"-DCMAKE_VERBOSE_MAKEFILE=ON"
|
||||
],
|
||||
"rewrap.reformat": true,
|
||||
"search.exclude": {
|
||||
"**/.idea": true,
|
||||
"**/out": true
|
||||
},
|
||||
"cSpell.words": [
|
||||
"cmake",
|
||||
"pkgconfig"
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user