Skip to content

Commit

Permalink
dont use libsoup in mac_osx_build
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaakh committed Jan 9, 2023
1 parent 54aa9b8 commit 6a6cfae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion base/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ OPTION(ENABLE_LINUX "Use this switch to enable LINUX" ON)
OPTION(ENABLE_CUDA "Use this switch to enable CUDA" ON)
OPTION(ENABLE_ARM64 "Use this switch to enable ARM64" OFF)
OPTION(ENABLE_WINDOWS "Use this switch to enable WINDOWS" OFF)
OPTION(ENABLE_OSX "Use this switch to enable Mac OSX" OFF)
OPTION(ENABLE_GST "Use this switch to integrate Gstreamer" ON)

IF(ENABLE_ARM64) #no GST build for ARM64 yet
Expand Down Expand Up @@ -75,8 +76,11 @@ IF(ENABLE_GST)
pkg_check_modules(gstreamer-base-1.0 REQUIRED IMPORTED_TARGET GLOBAL gstreamer-base-1.0)
IF(NOT ENABLE_WINDOWS)
pkg_check_modules(json-glib-1.0 REQUIRED IMPORTED_TARGET GLOBAL json-glib-1.0)
ENDIF(NOT ENABLE_WINDOWS)
IF(ENABLE_LINUX)
pkg_check_modules(libsoup-2.4 REQUIRED IMPORTED_TARGET GLOBAL libsoup-2.4)
ENDIF(NOT ENABLE_WINDOWS)
ENDIF(ENABLE_LINUX)


ENDIF(ENABLE_GST)

Expand Down

0 comments on commit 6a6cfae

Please sign in to comment.