... Extensions > Search > Remote SSH > Install ...
... # Démarrer la connexion SSH Open a Remote Window > Connect to Host > Add New SSH Host SSH Connection Command > ssh [username]@[hostname] SSH Configuration File > C:\Users\tiaka\.ssh\config Connect > Linux > Continue Password > [mot-de-passe] ...
... # Démarrer la connexion SSH Open a Remote Window > Connect to Host > [nom-server-distant] > Linux Password > [mot-de-passe] ...
... # Démarrer la connexion SSH Open a Remote Window > Connect to Host > Add New SSH Host SSH Connection Command > ssh [username]@[hostname] -X11 SSH Configuration File > C:\Users\tiaka\.ssh\config Connect > Linux > Continue Password > [mot-de-passe] ...
... # Ouvrir le fichier de configuration SSH Barre de recherche > Show and Run Commands > CMake: Connect to Host Configure SSH Hosts SSH Configuration file > C:\Users\[username]\.ssh\config ... # Activer X11 lors de la connexion SSH Host [hostname] HostName [hostname] User [username] ForwardX11 yes ForwardX11Trusted yes ...
... Extensions > Search > C/C++ > Install ...
... Extensions > Search > CMake > Install Extensions > Search > CMake Tools > Install ...
... Barre de recherche > Show and Run Commands > CMake: Quick Start Name : rdvcpp C++ : Create a C++ project Executable : Create an executable OK > OK ...
... #include <iostream> int main(int argc, char **argv) { std::cout << "[rdvcpp] : Demarrage du projet C++...\n"; return 0; } ...
... cmake_minimum_required(VERSION 3.10.0) project(rdvcpp VERSION 0.1.0 LANGUAGES C CXX) add_executable(rdvcpp main.cpp) ...
... Build the selected target ...
... Launch the selected target in the terminal window: [nom-projet] ...
... Cliquer sur le bord gauche d'une ligne de code ...
... Launch the debugger for the selected target: [nom-projet] ...
... Barre de recherche > Show and Run Commands > C/C++: Edit Configurations (JSON) ... .vscode/c_cpp_properties.json ...
... { "configurations": [ { "name": "Win32", "includePath": ["${workspaceFolder}/**"], "defines": ["_DEBUG", "UNICODE", "_UNICODE"], "windowsSdkVersion": "10.0.22621.0", "cStandard": "c17", "cppStandard": "c++17", "intelliSenseMode": "windows-msvc-x64", "configurationProvider": "ms-vscode.cmake-tools" } ], "version": 4 } ...
... # Ouvrir l'interface des propriétés C/C++ Barre de recherche > Show and Run Commands > C/C++: Edit Configuration (UI) ... # Définir le chemin du compilateur Compiler Path > C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.41.34120/bin/Hostx64/x64/cl.exe ...
... { "configurations": [ { "name": "Win32", "includePath": ["${workspaceFolder}/**"], "defines": ["_DEBUG", "UNICODE", "_UNICODE"], "windowsSdkVersion": "10.0.22621.0", "cStandard": "c17", "cppStandard": "c++17", "intelliSenseMode": "windows-msvc-x64", "configurationProvider": "ms-vscode.cmake-tools", "compilerPath": "C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.41.34120/bin/Hostx64/x64/cl.exe" } ], "version": 4 } ...
... Barre de recherche > Show and Run Commands > Preferences: Open Workspace Settings (JSON) ... .vscode/settings.json ...
... { } ...
... { "cmake.sourceDirectory": "${workspaceFolder}/[chemin/source/cmake]" } ...
... { "cmake.debugConfig": { "args": ["un", "deux", "trois", "quatre"] } } ...
... rdvcpp.exe un deux trois quatre ...
... { "cmake.environment": { "PATH": "C:/Qt/6.5.2/msvc2019_64/bin" }, } ...
... https://sourceforge.net/projects/vcxsrv/ Download ...
... # Démarrer l'installation Double clic > [installeur] Next # Configurer le dossier d'installation Destination Folder > C:\Program Files\VcXsrv Install > Close ...
... # Démarrer XLaunch Bouton Windows > Rechercher > XLaunch # Configurer le nombre de fenêtre Cocher > Multiple Windows Display number > 0 Suivant # Configurer le démarrage Cocher > Start no client Suivant # Configurer le presse-papiers Cocher > Clipboard Suivant # Enregistrer la configuration Save configuration Emplacement > C:\Users\[username]\Documents Nom du fichier > config.xlaunch Enregistrer ... Terminer ... # Redémarrer Windows Bouton Windows > Marche/Arrêt > Redémarrer ...
... # Démarrer la configuration C:\Users\[username]\Documents\config.xlaunch ...
... # Configurer le numéro de display # en créant une variable d'environnment permanente setx DISPLAY "127.0.0.1:[numero-display].0" ... # Le numéro de display doit être unique sur le réseau # Cela permet d'avoir plusieurs serveur X11 sur le réseau ... # Chaque server X11 doit créer une nouvelle configuration XLaunch # avec un numéro de display différent ... # Configurer le numéro de display # en créant une variable d'environnment permanente setx DISPLAY "127.0.0.1:0.0" ...
... L'outil XLaunch ayant démarré, Il est possible de se connecter à serveur SSH en activant le transfert (X11) Pour pouvoir exécuter une application graphique à distance. ... # Se connecter en SSH avec X11 ssh [username]@[hostname] -XY ... # Démarrer l'application xclock # Pour tester le transfert X11 xclock ...