- use this tool to run project simple
https://github.com/WBhlietue/seewkRunner
- install tools (cmake, ninja, vcpkg), you need install MSVC2022 manually
seewkInit
- install dependency is automat install when using
seewk make - make and run
seewk make
seewk start
for example
npm run make // make
npm start // compile and run
npm run dev // using nodemom to auto compile and run when cpp file changed
npm run compile // compile project
npm run view // run exe file
- msvc 2022
- cmake
- vcpkg
- ninja
add following code to your .vscode/c_cpp_properties.json files
{
"configurations": [
{
"name": "Win32",
"intelliSenseMode": "msvc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compileCommands": "${workspaceFolder}/build/compile_commands.json",
"cStandard": "c17",
"cppStandard": "c++20"
}
],
"version": 4
}
then use seewk make and seewk start to generate ifc files to use intellisense.