RLidentityDepracated/.vscode/c_cpp_properties.json
bits 48cb6d512b Add Visual Studio project files and CMake configuration for RLIdentityDLL
- Created RLIdentity.vcxproj and associated filters for source files.
- Added ZERO_CHECK.vcxproj and filters to manage build dependencies.
- Implemented cmake_install.cmake for installation configuration.
- Introduced libMinHook.h for hooking functionality.
- Updated solution file RLIdentityDLL.sln to include new projects.
2026-04-27 22:43:56 +03:00

22 lines
394 B
JSON

{
"version": 4,
"configurations": [
{
"name": "Win32",
"compilerPath": "cl.exe",
"intelliSenseMode": "windows-msvc-x64",
"cStandard": "c17",
"cppStandard": "c++14",
"includePath": [
"${workspaceFolder}",
"${workspaceFolder}/**"
],
"browse": {
"path": [
"${workspaceFolder}"
]
}
}
]
}