Skip to content

Commit

Permalink
📝 Improve linux CLion setup documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasGilg committed Jul 19, 2024
1 parent 2075604 commit d4634bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/ide-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,30 +92,30 @@ You can choose to enable CMake presets. From the following you can choose one re
- Run Release
- **Type**: CMake Application
- **Target**: `cosmoscout`
- **Executable** -> _Select other_ -> `$PROJECT_DIR$/install/linux-Release/bin/cosmoscout`
- **Executable** -> _Select other_ -> `$ProjectFileDir$/install/linux-Release/bin/cosmoscout`
- **Program arguments**: `--settings=../share/config/simple_desktop.json -vista vista.ini`
- **Environment variables**: `LD_LIBRARY_PATH=../lib:../lib/DriverPlugins:$LD_LIBRARY_PATH;VISTACORELIBS_DRIVER_PLUGIN_DIRS=../lib/DriverPlugins`
- **Before launch**: `install`
- Run Debug
- **Type**: CMake Application
- **Target**: `cosmoscout`
- **Executable** -> _Select other_ -> `$PROJECT_DIR$/install/linux-Debug/bin/cosmoscout`
- **Executable** -> _Select other_ -> `$ProjectFileDir$/install/linux-Debug/bin/cosmoscout`
- **Program arguments**: `--settings=../share/config/simple_desktop.json -vista vista.ini`
- **Environment variables**: `LD_LIBRARY_PATH=../lib:../lib/DriverPlugins:$LD_LIBRARY_PATH;VISTACORELIBS_DRIVER_PLUGIN_DIRS=../lib/DriverPlugins`
- **Before launch**: `install`
- Test Release
- **Type**: Doctest
- **Target**: `cosmoscout`
- **Program arguments**: `--run-tests --test-case-exclude="*[graphical]*"`
- **Working directory**: `$PROJECT_DIR$/install/linux-Release/bin`
- **Working directory**: `$ProjectFileDir$/install/linux-Release/bin`
- **Environment variables**: `LD_LIBRARY_PATH=../lib:../lib/DriverPlugins:$LD_LIBRARY_PATH`
- **Before launch**: `install` + `Prepare test run`
- Test Debug
- **Type**: Doctest
- **Target**: `cosmoscout`
- **Program arguments**: `--run-tests --test-case-exclude="*[graphical]*"`
- **Working directory**: `LD_LIBRARY_PATH=../lib:../lib/DriverPlugins:$LD_LIBRARY_PATH`
- **Environment variables**: `PATH=..\lib\;$Path$`
- **Working directory**: `$ProjectFileDir$/install/linux-Debug/bin`
- **Environment variables**: `LD_LIBRARY_PATH=../lib:../lib/DriverPlugins:$LD_LIBRARY_PATH`
- **Before launch**: `install` + `Prepare test run`

### Plugins
Expand Down

0 comments on commit d4634bd

Please sign in to comment.