List of files which we are using in out daily C++ development with visual studio code.
List of files which we are using in out daily C++ development with Visual Studio Code.
-**c_cpp_properties.json** helps vscode in syntax highlighting, navigating through the code and finding standard headers. compile_commands.json needs to be there, which is in case of VirtualFluids automatically created during CMake process.
-**c_cpp_properties.json** helps VS Code in syntax highlighting, navigating through the code and finding standard headers. compile_commands.json needs to be there, which is in case of VirtualFluids automatically created during CMake process.
-**launch.json** is used by vscode for debugging purposes.
-**launch.json** is used by VS Code for debugging purposes.
-**tasks.json** specfifes customs "taks" for the user, like shell commands. They can then be executed in vscode with CMD+SHIFT+B.
-**tasks.json** specifies customs "task" for the user, like shell commands. They can then be executed in VS Code with CMD+SHIFT+B.
All of those files are designed for the developement in a linux environment, ideally in our virtualfluids docker container. They need be adapted to the specific applications.
\ No newline at end of file
All of those files are designed for the developement in a linux environment, ideally in our VirtualFluids docker container. They need be adapted to the specific applications.