1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Docs: Update features with version.

This commit is contained in:
winlin 2022-11-23 09:24:34 +08:00
parent 96b4918c25
commit 02d47c5c21
3 changed files with 59 additions and 53 deletions

View file

@ -75,7 +75,7 @@ AUX_SOURCE_DIRECTORY(${SRS_DIR}/src/kernel SOURCE_FILES)
AUX_SOURCE_DIRECTORY(${SRS_DIR}/src/protocol SOURCE_FILES)
AUX_SOURCE_DIRECTORY(${SRS_DIR}/src/app SOURCE_FILES)
ADD_DEFINITIONS("-g -O0")
ADD_DEFINITIONS("-g -O0 -fsanitize=address -fno-omit-frame-pointer")
###########################################################
# Setup SRS project
@ -105,6 +105,7 @@ TARGET_LINK_LIBRARIES(utest gtest gtest_main)
TARGET_LINK_LIBRARIES(utest dl)
TARGET_LINK_LIBRARIES(utest ${DEPS_LIBS})
TARGET_LINK_LIBRARIES(utest -ldl -pthread)
TARGET_LINK_LIBRARIES(utest -fsanitize=address -fno-omit-frame-pointer)
###########################################################
# Done