Skip to content

Commit

Permalink
Add cmake option to optionally compile with LeakSanitizer
Browse files Browse the repository at this point in the history
Alse change the description of the existing option SANITIZE_ADDRESS to avoid ambiguity.
  • Loading branch information
dforsi committed Apr 6, 2024
1 parent 7be1f8a commit 0b028aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ set(sdrangel_VERSION_SUFFIX "")

# SDRAngel cmake options
option(DEBUG_OUTPUT "Print debug messages" OFF)
option(SANITIZE_ADDRESS "Activate memory address sanitization" OFF)
option(SANITIZE_ADDRESS "Activate detection of uninitialized memory (AddressSanitizer)" OFF)
option(SANITIZE_MEMORY "Activate detection of leaked memory (LeakSanitizer)" OFF)
option(RX_SAMPLE_24BIT "Internal 24 bit Rx DSP" ON)
option(BUILD_SERVER "Build Server" ON)
option(BUILD_GUI "Build GUI" ON)
Expand Down

0 comments on commit 0b028aa

Please sign in to comment.