Remove auto generated comments

This commit is contained in:
Iraklis Karagkiozoglou 2017-02-13 05:45:28 +02:00
parent a932e5fc20
commit a82a0c01b5
2 changed files with 4 additions and 14 deletions

View File

@ -22,8 +22,6 @@ include_directories(
${GLIB_INCLUDE_DIR})
## section: source files
# Add your source files here (one file per line), please SORT in alphabetical order for future maintenance
SET (SRCS
./agent/address.c
./agent/agent.c
@ -67,9 +65,6 @@ SET (SRCS
./stun/utils.c
./libnice.def
)
## section: header files
# Add your header files here(one file per line), please SORT in alphabetical order for future maintenance!
SET(HEADERS
./config.h
./agent/address.h

View File

@ -1,13 +1,7 @@
# Common Ambient Variables:
# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg>
# TARGET_TRIPLET is the current triplet (x86-windows, etc)
# PORT is the current port name (zlib, etc)
# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT}
# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET}
#
include(vcpkg_common_functions)
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/libnice-0.1.13)
vcpkg_download_distfile(ARCHIVE
URLS "https://nice.freedesktop.org/releases/libnice-0.1.13.tar.gz"
FILENAME "libnice-0.1.13.tar.gz"
@ -16,6 +10,7 @@ vcpkg_download_distfile(ARCHIVE
vcpkg_extract_source_archive(${ARCHIVE})
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
OPTIONS_RELEASE -DOPTIMIZE=1
@ -23,9 +18,9 @@ vcpkg_configure_cmake(
)
vcpkg_install_cmake()
vcpkg_copy_pdbs()
# Handle copyright
file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/libnice)
file(COPY ${SOURCE_PATH}/COPYING.LGPL DESTINATION ${CURRENT_PACKAGES_DIR}/share/libnice)
file(COPY ${SOURCE_PATH}/COPYING.MPL DESTINATION ${CURRENT_PACKAGES_DIR}/share/libnice)