mirror of
https://github.com/UltraCoderRU/libwebrtc.git
synced 2026-01-28 11:15:13 +00:00
Compare commits
5 commits
master
...
v1.0.0-faf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a552c41acb | ||
|
|
809b32da5b | ||
|
|
3d125fa18e | ||
|
|
a517f589ae | ||
|
|
33be3115e8 |
2 changed files with 6 additions and 5 deletions
|
|
@ -5,10 +5,8 @@ matrix:
|
|||
|
||||
platform:
|
||||
- x86
|
||||
- x64
|
||||
|
||||
configuration:
|
||||
- Debug
|
||||
- Release
|
||||
|
||||
clone_folder: c:\projects\libwebrtc
|
||||
|
|
@ -17,7 +15,7 @@ before_build:
|
|||
- cd c:\projects\libwebrtc
|
||||
- if "%platform%"=="x86" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015
|
||||
- if "%platform%"=="x64" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 Win64
|
||||
- cmake -G "%CMAKE_GENERATOR_NAME%" -DBUILD_SAMPLE=1 -DCMAKE_BUILD_TYPE=%configuration% -DCMAKE_INSTALL_PREFIX=c:\projects\libwebrtc .
|
||||
- cmake -G "%CMAKE_GENERATOR_NAME%" -DBUILD_SAMPLE=OFF -DCMAKE_BUILD_TYPE=%configuration% -DBUILD_TESTS=ON -DCMAKE_INSTALL_PREFIX=c:\projects\libwebrtc .
|
||||
|
||||
build:
|
||||
project: PACKAGE.vcxproj
|
||||
|
|
|
|||
|
|
@ -17,9 +17,11 @@ file(GLOB_RECURSE _OBJ_EXCLUDED
|
|||
${WEBRTC_OUTPUT_DIR}/obj/third_party/yasm/re2c/*${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/third_party/yasm/yasm/*${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/third_party/protobuf/protoc/*${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/third_party/protobuf/protobuf_lite/*${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/third_party/protobuf/protobuf_full/*${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/webrtc/examples/*${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/webrtc/tools/*${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/webrtc/modules/audio_coding/delay_test/utility${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/webrtc/modules/modules_tests/utility${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/webrtc/modules/video_capture/video_capture/video_capture_external${_OBJ_EXT}
|
||||
${WEBRTC_OUTPUT_DIR}/obj/webrtc/modules/video_capture/video_capture/device_info_external${_OBJ_EXT})
|
||||
|
||||
|
|
@ -36,7 +38,8 @@ set_source_files_properties(${_OBJ_FILES} PROPERTIES
|
|||
|
||||
set_target_properties(webrtc PROPERTIES
|
||||
LINKER_LANGUAGE C
|
||||
LIBRARY_OUTPUT_DIRECTORY ${WEBRTC_OUTPUT_DIR})
|
||||
LIBRARY_OUTPUT_DIRECTORY ${WEBRTC_OUTPUT_DIR}
|
||||
PREFIX lib)
|
||||
|
||||
#
|
||||
# Install headers
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue