-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1311 from Tencent/ft/master/merge2409
2.1 merge to master
- Loading branch information
Showing
143 changed files
with
8,941 additions
and
6,207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,34 @@ | ||
mars/boost | ||
mars/googletest | ||
mars/googlemock | ||
mars/rapidjson | ||
mars/log/crypt/micro-ecc-master | ||
mars/comm/UWP/zlib | ||
mars/openssl | ||
mars/zstd/tests | ||
samples | ||
mars/mars/boost | ||
mars/mars/googletest | ||
mars/mars/googlemock | ||
mars/mars/rapidjson | ||
mars/mars/log/crypt/micro-ecc-master | ||
mars/mars/comm/UWP/zlib | ||
mars/mars/openssl | ||
mars/mars/zstd/tests | ||
mars/samples | ||
|
||
mars-private/mars/mmjpeg | ||
mars-private/mars/protobuf | ||
mars-private/mars/cdn/src/proto | ||
mars-private/mars/cdn/src/protocol | ||
mars-private/mars/openssl | ||
mars-private/mars/vfs | ||
mars-private/mars/smc/src/protobuf | ||
|
||
mars-private/mars/andromeda/andromeda.h | ||
mars-private/mars/andromeda/cronet_android_jni_callback.h | ||
mars-private/mars/andromeda/cronet_file_task_runer_wrapper.h | ||
mars-private/mars/andromeda/http_cronet_context_builder.h | ||
mars-private/mars/andromeda/http_network_estimate_callback.h | ||
mars-private/mars/andromeda/http_result_callback.h | ||
mars-private/mars/andromeda/http_with_cronet.h | ||
|
||
mars-wechat/mars/webp | ||
mars-wechat/mars/accessory | ||
|
||
build | ||
cmake_build | ||
tools | ||
mmnet | ||
openssl-build-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
cmake_minimum_required (VERSION 3.6) | ||
|
||
set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}" CACHE PATH "Installation directory" FORCE) | ||
message(STATUS "CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}") | ||
|
||
project (alarm) | ||
|
||
include(../comm/CMakeUtils.txt) | ||
include(../comm/CMakeExtraFlags.txt) | ||
|
||
include_directories(.) | ||
include_directories(src) | ||
include_directories(..) | ||
include_directories(../..) | ||
include_directories(../comm) | ||
include_directories(../../..) | ||
include_directories(../boot) | ||
|
||
file(GLOB SELF_TEMP_SRC_FILES RELATIVE ${PROJECT_SOURCE_DIR} *.cc *.h) | ||
list(APPEND SELF_SRC_FILES ${SELF_TEMP_SRC_FILES}) | ||
|
||
file(GLOB SELF_TEMP_SRC_FILES RELATIVE ${PROJECT_SOURCE_DIR} src/*.cc src/*.h) | ||
source_group(src FILES ${SELF_TEMP_SRC_FILES}) | ||
list(APPEND SELF_SRC_FILES ${SELF_TEMP_SRC_FILES}) | ||
|
||
|
||
if(MSVC) | ||
add_definitions(/FI"../../comm/projdef.h") | ||
include_directories(../comm/windows) | ||
elseif(ANDROID) | ||
if(NOT CPP_CALL_BACK) | ||
file(GLOB SELF_ANDROID_SRC_FILES RELATIVE ${PROJECT_SOURCE_DIR} jni/*.cc) | ||
endif() | ||
if(NATIVE_CALLBACK) | ||
message("applogic native callback") | ||
add_definitions(-DNATIVE_CALLBACK) | ||
endif() | ||
|
||
list(APPEND SELF_SRC_FILES ${SELF_ANDROID_SRC_FILES}) | ||
endif() | ||
|
||
BuildWithUnitTest("${PROJECT_NAME}" "${SELF_SRC_FILES}") |
Oops, something went wrong.