Commit e89e3970 by wxf

支持配置是否编译 api/tests/server

parent ac320ddc
......@@ -48,6 +48,9 @@ option(ENABLE_FAAC "Enable FAAC" false)
option(ENABLE_X264 "Enable x264" false)
option(ENABLE_MP4 "Enable MP4" true)
option(ENABLE_RTPPROXY "Enable RTPPROXY" true)
option(ENABLE_API "Enable C API SDK" true)
option(ENABLE_TESTS "Enable Tests" true)
option(ENABLE_SERVER "Enable Server" true)
set(LINK_LIB_LIST zlmediakit zltoolkit)
......@@ -188,11 +191,17 @@ execute_process(COMMAND cp -r ${CMAKE_CURRENT_SOURCE_DIR}/www ${EXECUTABLE_OUTPU
execute_process(COMMAND cp ${CMAKE_CURRENT_SOURCE_DIR}/conf/config.ini ${EXECUTABLE_OUTPUT_PATH}/)
#添加c库
add_subdirectory(api)
if(ENABLE_API)
add_subdirectory(api)
endif()
if (NOT IOS)
#测试程序
add_subdirectory(tests)
if(ENABLE_TESTS)
add_subdirectory(tests)
endif()
#主服务器
add_subdirectory(server)
if(ENABLE_SERVER)
add_subdirectory(server)
endif()
endif ()
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论