Skip to content

Instantly share code, notes, and snippets.

@jj1bdx
Created April 13, 2023 08:04
Show Gist options
  • Save jj1bdx/f29c2a956803e9fdebbdefae6dc1218d to your computer and use it in GitHub Desktop.
Save jj1bdx/f29c2a956803e9fdebbdefae6dc1218d to your computer and use it in GitHub Desktop.
CMake script for building sdr++ on macOS
#!/bin/sh
# CMake local script for building sdr++ <git@github.com:AlexandreRouma/SDRPlusPlus.git> on macOS
cmake .. \
-DOPT_BUILD_AUDIO_SINK=OFF \
-DOPT_BUILD_BLADERF_SOURCE=OFF \
-DOPT_BUILD_HACKRF_SOURCE=OFF \
-DOPT_BUILD_HERMES_SOURCE=OFF \
-DOPT_BUILD_M17_DECODER=OFF \
-DOPT_BUILD_METEOR_DEMODULATOR=OFF \
-DOPT_BUILD_NEW_PORTAUDIO_SINK=ON \
-DOPT_BUILD_PLUTOSDR_SOURCE=OFF \
-DOPT_BUILD_PORTAUDIO_SINK=ON \
-DOPT_BUILD_RFSPACE_SOURCE=OFF \
-DOPT_BUILD_SOAPY_SOURCE=ON \
-DOPT_BUILD_SDRPLAY_SOURCE=OFF \
-DOPT_BUILD_SPECTRAN_HTTP_SOURCE=OFF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment