Commit bfbdb3f7 authored by Emilien Langlois's avatar Emilien Langlois
Browse files

List fini

parent 6fcaad20
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "windows-msvc-x64",
            "configurationProvider": "ms-vscode.makefile-tools"
        },
        {
            "name": "premiere",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "windows-msvc-x64"
        }
    ],
    "version": 4
}
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
{"buildTargets":[],"launchTargets":[],"customConfigurationProvider":{"workspaceBrowse":{"browsePath":[]},"fileIndex":[]}}
 No newline at end of file

.vscode/dryrun.log

0 → 100644
+4 −0
Original line number Diff line number Diff line
make.exe --dry-run --keep-going --print-directory
'make.exe' n'est pas reconnu en tant que commande interne
ou externe, un programme ex�cutable ou un fichier de commandes.
 

.vscode/launch.json

0 → 100644
+19 −0
Original line number Diff line number Diff line
{
    // Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
    // Pointez pour afficher la description des attributs existants.
    // Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(Windows) Lancer",
            "type": "cppvsdbg",
            "request": "launch",
            "program": "entrer le nom du programme, par exemple ${workspaceFolder}/a.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${fileDirname}",
            "environment": [],
            "console": "externalTerminal"
        }
    ]
}
 No newline at end of file

.vscode/settings.json

0 → 100644
+3 −0
Original line number Diff line number Diff line
{
    "makefile.extensionOutputFolder": "./.vscode"
}
 No newline at end of file
Loading