Я боролся с настройками .json в VS Code уже несколько часов, и я довольно растерян. Все, что я хочу сделать, это связать pdcurses с моим проектом, чтобы я мог начать писать код. У меня настроен intellisense, но оператор #include выдает «curses.h: нет такого файла или каталога»:
.jsons:
settings.json:
{
"files.associations": {
"iostream": "cpp",
"vector": "cpp"
}
}
c_cpp_properties.json:
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"C:\\Visual Studio Code Projects\\pdcurs39/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\Mingw-w64\\mingw64\\bin\\g++.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64",
"forcedInclude": [],
"browse": {
"path": []
}
}
],
"version": 4
}
tasks.json:
{
"version": "2.0.0",
"tasks": [
{
"label": "build RL Test",
"type": "shell",
"command": "g++",
"args": ["-g", "-o", "RLTest", "RLTest.cpp"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
launch.json:
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/RLTest.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\Mingw-w64\\mingw64\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
Нормальные пакеты C ++ работают нормально,pdcurses установлен в C: \ Visual Studio Code Projects \ pdcurs39 \ со стандартным mingw-w64 make в папке wincon.
Я думаю, что проблема в том, что файл pdcurses.a не включен, но я не уверенкак связать это ...