Remove include guards

This commit is contained in:
Axel Isouard 2017-03-18 16:00:31 +01:00
parent e3a4e5d64e
commit 5a602922c0
No known key found for this signature in database
GPG key ID: 4E64BB3EAAF31C29
6 changed files with 0 additions and 33 deletions

View file

@ -1,8 +1,3 @@
if(FIND_LIBRARIES_INCLUDED)
return()
endif(FIND_LIBRARIES_INCLUDED)
set(FIND_LIBRARIES_INCLUDED true)
# #
# Find required packages # Find required packages
list(APPEND LIBWEBRTC_LIBRARIES webrtc) list(APPEND LIBWEBRTC_LIBRARIES webrtc)

View file

@ -1,8 +1,3 @@
if(INSTALL_INCLUDED)
return()
endif(INSTALL_INCLUDED)
set(INSTALL_INCLUDED true)
# #
# Install library # Install library
file(GLOB_RECURSE _LIBRARY_FILES file(GLOB_RECURSE _LIBRARY_FILES

View file

@ -1,8 +1,3 @@
if(OPTIONS_INCLUDED)
return()
endif(OPTIONS_INCLUDED)
set(OPTIONS_INCLUDED true)
# #
# Options, flags # Options, flags
option(BUILD_TESTS "Build test binaries" OFF) option(BUILD_TESTS "Build test binaries" OFF)

View file

@ -1,8 +1,3 @@
if(PACKAGE_INCLUDED)
return()
endif(PACKAGE_INCLUDED)
set(PACKAGE_INCLUDED true)
# #
# Create package # Create package
set(CPACK_PACKAGE_FILE_NAME "libwebrtc-${LIBWEBRTC_VERSION}-${TARGET_OS}-${TARGET_CPU}") set(CPACK_PACKAGE_FILE_NAME "libwebrtc-${LIBWEBRTC_VERSION}-${TARGET_OS}-${TARGET_CPU}")

View file

@ -1,8 +1,3 @@
if(TARGET_OS_AND_CPU_INCLUDED)
return()
endif(TARGET_OS_AND_CPU_INCLUDED)
set(TARGET_OS_AND_CPU_INCLUDED true)
include(CheckSymbolExists) include(CheckSymbolExists)
# #

View file

@ -1,11 +1,3 @@
if(VERSION_INCLUDED)
return()
endif(VERSION_INCLUDED)
set(VERSION_INCLUDED true)
#
# Set the project's version
set(LIBWEBRTC_MAJOR_VERSION 0) set(LIBWEBRTC_MAJOR_VERSION 0)
set(LIBWEBRTC_MINOR_VERSION 0) set(LIBWEBRTC_MINOR_VERSION 0)
set(LIBWEBRTC_PATCH_VERSION 1) set(LIBWEBRTC_PATCH_VERSION 1)