mirror of
https://github.com/UltraCoderRU/libwebrtc.git
synced 2026-01-28 11:15:13 +00:00
Compare commits
5 commits
master
...
0.0.1-rc.4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
baa6604c4b | ||
|
|
92847e8f47 | ||
|
|
6b8be19839 | ||
|
|
ce4951a956 | ||
|
|
3a390b5f25 |
2 changed files with 17 additions and 5 deletions
|
|
@ -28,6 +28,16 @@ if (${_OBJ_EXCLUDED_LEN} GREATER "0")
|
|||
list(REMOVE_ITEM _OBJ_FILES ${_OBJ_EXCLUDED})
|
||||
endif ()
|
||||
|
||||
list(FILTER _OBJ_FILES EXCLUDE REGEX test)
|
||||
list(FILTER _OBJ_FILES EXCLUDE REGEX unittests)
|
||||
|
||||
#add fakeaudio device
|
||||
file(GLOB_RECURSE LIBWEBRTC_TEST_COMMON_FILES
|
||||
"${WEBRTC_OUTPUT_DIR}/obj/webrtc/test/test_common/*${_OBJ_EXT}"
|
||||
"${WEBRTC_OUTPUT_DIR}/obj/webrtc/pc/peerconnection_unittests/*${_OBJ_EXT}"
|
||||
"${WEBRTC_OUTPUT_DIR}/obj/testing/gtest/gtest*${_OBJ_EXT}")
|
||||
list(APPEND _OBJ_FILES ${LIBWEBRTC_TEST_COMMON_FILES})
|
||||
|
||||
add_library(webrtc ${LIBRARY_TYPE} ${_OBJ_FILES})
|
||||
|
||||
set_source_files_properties(${_OBJ_FILES} PROPERTIES
|
||||
|
|
@ -36,7 +46,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
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
os: Visual Studio 2015
|
||||
|
||||
platform:
|
||||
- x64
|
||||
- x86
|
||||
|
||||
configuration: Release
|
||||
|
||||
|
|
@ -13,8 +13,9 @@ build:
|
|||
before_build:
|
||||
- cd c:\projects\libwebrtc
|
||||
- git submodule update --init --recursive
|
||||
- cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_INSTALL_PREFIX=c:\projects\libwebrtc -DNINJA_ARGS="-j 2" .
|
||||
- cmake -G "Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX=c:\projects\libwebrtc -DNINJA_ARGS="-j 2" -DBUILD_TESTS=ON .
|
||||
|
||||
artifacts:
|
||||
- path: libwebrtc-0.0.1-rc.4-win32-x64.7z
|
||||
name: libwebrtc-0.0.1-rc.4-win32-x64.7z
|
||||
- path: libwebrtc-0.0.1-rc.4-win-x86.zip
|
||||
|
||||
test: OFF
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue