diff options
| author | bunnei <bunneidev@gmail.com> | 2021-04-10 02:27:02 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-10 02:27:02 -0700 |
| commit | 1063e0be483c59d0d3f31eb62ef888e00bdaee7d (patch) | |
| tree | c32c479a59ad290f5c0db86a19e39a4f9a0fa95a /externals/find-modules | |
| parent | b04877dd952d7da11647f16626952d7325e4e900 (diff) | |
| parent | 5096ed5e0ab91254a29a58234d1df71b4065745f (diff) | |
Merge pull request #6172 from degasus/cmake_opus
externals: Search for shared opus installation.
Diffstat (limited to 'externals/find-modules')
| -rw-r--r-- | externals/find-modules/Findopus.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/find-modules/Findopus.cmake b/externals/find-modules/Findopus.cmake index de84bd995..2bce56122 100644 --- a/externals/find-modules/Findopus.cmake +++ b/externals/find-modules/Findopus.cmake @@ -28,7 +28,7 @@ if(opus_FOUND) endif() if(opus_FOUND AND NOT TARGET Opus::Opus) - add_library(Opus::Opus UNKNOWN IMPORTED) + add_library(Opus::Opus UNKNOWN IMPORTED GLOBAL) set_target_properties(Opus::Opus PROPERTIES IMPORTED_LOCATION "${opus_LIBRARY}" INTERFACE_COMPILE_OPTIONS "${PC_opus_CFLAGS_OTHER}" |
