File size: 352 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 | Direct style: cl /EHsc /std:c++17 COMIntegration.cpp /link Shlwapi.lib /out:"..\Release\COMIntegration.exe" For a debug build with PDB: cl /EHsc /std:c++17 /Z7 /DEBUG:FULL COMIntegration.cpp /link Shlwapi.lib /out:"..\Release\COMIntegration.exe" CMake style: cmake ../COMIntegration~ -B ./build cmake --build ./build --config=release -- /p:OutDir=.. |