3 Star 0 Fork 0

alibaba / CicadaPlayer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 814 Bytes
一键复制 编辑 原始数据 按行查看 历史
hengheng 提交于 2020-05-11 15:20 . build: enable unit text on mac
cmake_minimum_required(VERSION 3.15)
project(CicadaMedia)
# Code Coverage Configuration
option(CODE_COVERAGE "Enable coverage reporting" OFF)
option(USEASAN "Enable Address Sanitizer" OFF)
option(USETSAN "Enable Thread Sanitizer" OFF)
option(USEUBSAN "Enable Undefined Behavior Sanitizer" OFF)
set(USEASAN ON)
set(CMDLINE_BUILD ON)
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(TARGET_PLATFORM macOSX)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(TARGET_PLATFORM Linux)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
set(TARGET_PLATFORM windows)
set(USEASAN OFF)
endif ()
if (XCODE)
set(USEASAN OFF)
endif ()
add_subdirectory(cmdline)
include(framework/${TARGET_PLATFORM}.cmake)
if (BUILD_TEST)
add_subdirectory(mediaPlayer/tests)
add_subdirectory(framework/tests)
endif ()
1
https://gitee.com/mirrors_alibaba/CicadaPlayer.git
git@gitee.com:mirrors_alibaba/CicadaPlayer.git
mirrors_alibaba
CicadaPlayer
CicadaPlayer
release/0.4.4

搜索帮助