Skip to content
Snippets Groups Projects
Verified Commit 07c5f545 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

Add information to setup your IDE

parent 1ce12078
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,11 @@ The following modules will be provided in this repository and they will automati
- [Shader-Compiler](modules/shader_compiler/README.md)
- [Upscaling](modules/upscaling/README.md)
## Development
See this guide to setup your IDE for most forward development.
- [How to setup your IDE](doc/SETUP_IDE.md)
## Documentation
A pre-built documentation can be found here:
......
# How to setup your IDE
## VSCodium
1. Install [VSCodium](https://github.com/VSCodium/vscodium)
2. Run `scripts/setup-codium.sh` in your local repository
3. Run VSCodium and open your local repository as project
### VSCode
If you should prefer to use the official binaries from Microsoft including their own telemetry, you can follow these steps:
1. Download and install [VSCode](https://code.visualstudio.com/Download)
2. Run `scripts/setup-codium.sh` in your local repository or in case of a Windows host run following line from PowerShell:
```
Get-Content resources\extensions.txt | ForEach-Object {code --install-extension $_}
```
3. Run VSCode and open your local repository as project
## Eclipse CDT
1. Download and install [Eclipse CDT](https://www.eclipse.org/cdt/downloads.php)
2. Run Eclipse CDT and open your local repository as project
## CLion
1. Download and install [CLion](https://www.jetbrains.com/clion/download/)
2. Run CLion and open your local repository as project
GitLab.gitlab-workflow
llvm-vs-code-extensions.vscode-clangd
ms-vscode.cmake-tools
slevesque.vscode-3dviewer
twxs.cmake
webfreak.debug
#!/bin/bash
CODIUM=codium
if [ ! -f /usr/bin/codium ]; then
if [ -f /usr/bin/code ]; then
CODIUM=code
else
echo "Please install VSCodium on your system!"
echo "More information here: https://github.com/VSCodium/vscodium"
exit
fi
fi
cat "resources/extensions.txt" | while read EXTENSION || [[ -n $EXTENSION ]];
do
$CODIUM --install-extension $EXTENSION --force
done
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