add note about release builds

This commit is contained in:
Marcus10110
2024-07-11 15:43:51 -07:00
parent df63389c46
commit 95ef70c352

View File

@@ -200,6 +200,9 @@ cd build
cmake .. -A x64 cmake .. -A x64
cmake --build . cmake --build .
:: built analyzer will be located at SampleAnalyzer\build\Analyzers\Debug\SimpleSerialAnalyzer.dll :: built analyzer will be located at SampleAnalyzer\build\Analyzers\Debug\SimpleSerialAnalyzer.dll
:: use the release build when sharing your analyzer! debug builds only work on your machine.
cmake --build . --config Release
:: release built analyzer will be located at SampleAnalyzer\build\Analyzers\Release\SimpleSerialAnalyzer.dll
``` ```
### MacOS ### MacOS