Skip to content
Snippets Groups Projects
Commit d53613b5 authored by Boroondas Gupte's avatar Boroondas Gupte
Browse files

VWR-23455: Don't download FMOD unless INSTALL_PROPRIETARY is TRUE

parent d1ad7a56
No related branches found
No related tags found
No related merge requests found
......@@ -172,6 +172,7 @@ Boroondas Gupte
VWR-233
VWR-20583
VWR-20891
VWR-23455
WEB-262
Bulli Schumann
CT-218
......
# -*- cmake -*-
include(Prebuilt)
if (INSTALL_PROPRIETARY)
include(Prebuilt)
endif (INSTALL_PROPRIETARY)
set(FMOD_FIND_QUIETLY OFF)
set(FMOD_FIND_REQUIRED OFF)
......@@ -7,7 +9,9 @@ set(FMOD_FIND_REQUIRED OFF)
if (STANDALONE)
include(FindFMOD)
else (STANDALONE)
use_prebuilt_binary(fmod)
if (INSTALL_PROPRIETARY)
use_prebuilt_binary(fmod)
endif (INSTALL_PROPRIETARY)
if (WINDOWS)
set(FMOD_LIBRARY fmod)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment