Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Asteborg <maastebo@microsoft.com>2020-04-23 08:42:18 +0300
committerMark Harris <mark.hsj@gmail.com>2020-06-13 10:21:06 +0300
commitd00d866e8c56d5a8acf764e34ce04dc54c790ac8 (patch)
tree9e563b2802ee201073b37b19fcb385fb4ee90ac2 /cmake/OpusSources.cmake
parent48055ccc235a287c2ccf143a7196281a78a7746d (diff)
cmake - add include guards to cmake files
Signed-off-by: Mark Harris <mark.hsj@gmail.com>
Diffstat (limited to 'cmake/OpusSources.cmake')
-rw-r--r--cmake/OpusSources.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/OpusSources.cmake b/cmake/OpusSources.cmake
index d8c6cdf4..01e75d1a 100644
--- a/cmake/OpusSources.cmake
+++ b/cmake/OpusSources.cmake
@@ -1,3 +1,8 @@
+if(__opus_sources)
+ return()
+endif()
+set(__opus_sources INCLUDED)
+
include(OpusFunctions)
get_opus_sources(SILK_HEAD silk_headers.mk silk_headers)