Skip to content
Snippets Groups Projects
Commit 01bc26e2 authored by tobiglaser's avatar tobiglaser
Browse files

added recommended extension to gitlab-ci

parent d77b824c
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ Windows-MSYS2-MINGW64:
$CurrentPath = [System.Environment]::GetEnvironmentVariable("Path", "User") -split ";"
Write-Output "Old Path: $CurrentPath"
if ($CurrentPath -contains $NewPath) {
Write-Output "NewPath is already in the user PATH variable."
Write-Output "NewPath is already in the user PATH variable."
} else {
Write-Output "NewPath is NOT in the user PATH variable. Updating..."
[System.Environment]::SetEnvironmentVariable("Path", "$($CurrentPath -join ';');$NewPath", "User")
......@@ -50,7 +50,7 @@ Windows-MSYS2-MINGW64:
cd ..'
- | # Collecting all Files and zipping them
C:\msys64\usr\bin\bash -lcx '
mkdir -p template/{lib,src}
mkdir -p template/{lib,src,.vscode}
mv build/cute.dll template/lib/
mv build/libcute.dll.a template/lib/
mv include/cute.h template/lib/
......@@ -60,6 +60,7 @@ Windows-MSYS2-MINGW64:
mv examples/example.cpp template/
mv .clang-format template/
mv .gitignore template/
mv .vscode/extensions.json template/.vscode/
zip -r template-windows.zip template/
zip -r doxygen.zip doxygen/
'
......
......@@ -2,10 +2,8 @@
"recommendations": [
"aaron-bond.better-comments",
"ms-vscode.cpptools-extension-pack",
"vadimcn.vscode-lldb",
"mhutchie.git-graph",
"cschlosser.doxdocgen",
"oderwat.indent-rainbow",
"llvm-vs-code-extensions.vscode-clangd"
"oderwat.indent-rainbow"
]
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment