Skip to content
Snippets Groups Projects
Commit 2666504d authored by Roxie Linden's avatar Roxie Linden
Browse files

Cmake on TC is sure picky

parent 393769e9
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ if (WINDOWS) ...@@ -6,7 +6,7 @@ if (WINDOWS)
if( ADDRESS_SIZE EQUAL 32 ) if( ADDRESS_SIZE EQUAL 32 )
FetchContent_Declare( FetchContent_Declare(
webrtc webrtc
URL https://webrtc-build-releases.s3.us-west-2.amazonaws.com/webrtc.windows_x86.tar.bz2 URL "https://webrtc-build-releases.s3.us-west-2.amazonaws.com/webrtc.windows_x86.tar.bz2"
FIND_PACKAGE_ARGS NAMES webrtc FIND_PACKAGE_ARGS NAMES webrtc
DOWNLOAD_EXTRACT_TIMESTAMP TRUE DOWNLOAD_EXTRACT_TIMESTAMP TRUE
DOWNLOAD_DIR "${LIBS_PREBUILT_DIR}/webrtc/" DOWNLOAD_DIR "${LIBS_PREBUILT_DIR}/webrtc/"
...@@ -15,7 +15,7 @@ if (WINDOWS) ...@@ -15,7 +15,7 @@ if (WINDOWS)
else ( ADDRESS_SIZE EQUAL 32 ) else ( ADDRESS_SIZE EQUAL 32 )
FetchContent_Declare( FetchContent_Declare(
webrtc webrtc
URL https://webrtc-build-releases.s3.us-west-2.amazonaws.com/webrtc.windows_x86_64.tar.bz2 URL "https://webrtc-build-releases.s3.us-west-2.amazonaws.com/webrtc.windows_x86_64.tar.bz2"
FIND_PACKAGE_ARGS NAMES webrtc FIND_PACKAGE_ARGS NAMES webrtc
DOWNLOAD_EXTRACT_TIMESTAMP TRUE DOWNLOAD_EXTRACT_TIMESTAMP TRUE
DOWNLOAD_DIR "${LIBS_PREBUILT_DIR}/webrtc/" DOWNLOAD_DIR "${LIBS_PREBUILT_DIR}/webrtc/"
...@@ -25,7 +25,7 @@ if (WINDOWS) ...@@ -25,7 +25,7 @@ if (WINDOWS)
elseif (DARWIN) elseif (DARWIN)
FetchContent_Declare( FetchContent_Declare(
webrtc webrtc
URL https://webrtc-build-releases.s3.us-west-2.amazonaws.com/webrtc.macos_x86_64.tar.bz2 URL "https://webrtc-build-releases.s3.us-west-2.amazonaws.com/webrtc.macos_x86_64.tar.bz2"
FIND_PACKAGE_ARGS NAMES webrtc FIND_PACKAGE_ARGS NAMES webrtc
DOWNLOAD_EXTRACT_TIMESTAMP TRUE DOWNLOAD_EXTRACT_TIMESTAMP TRUE
DOWNLOAD_DIR "${LIBS_PREBUILT_DIR}/webrtc/" DOWNLOAD_DIR "${LIBS_PREBUILT_DIR}/webrtc/"
......
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