feat update context
Some checks failed
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Waiting to run
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Waiting to run
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Waiting to run
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Waiting to run
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Waiting to run
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Waiting to run
linux-x64-gcc / linux-gcc (Debug) (push) Waiting to run
linux-x64-gcc / linux-gcc (Release) (push) Waiting to run
linux-x86-gcc / linux-gcc (Debug) (push) Waiting to run
linux-x86-gcc / linux-gcc (Release) (push) Waiting to run
android / build (push) Successful in 6m17s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 8m3s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 9m52s
linux-arm-gcc / linux-gcc-arm (Release) (push) Has been cancelled
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Has been cancelled
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Has been cancelled
linux-arm-gcc / linux-gcc-armhf (Release) (push) Has been cancelled

This commit is contained in:
tqcq 2024-06-14 16:08:40 +08:00
parent c76dbf3a47
commit ea484f3137
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,6 @@ get_git_commit_subject(GIT_COMMIT_SUBJECT)
set(THIRD_PARTY_INCLUDE_DIRS "third_party/json" "third_party/inja" "third_party/sigslot" "${CMAKE_CURRENT_BINARY_DIR}/third_party/gflags/include") set(THIRD_PARTY_INCLUDE_DIRS "third_party/json" "third_party/inja" "third_party/sigslot" "${CMAKE_CURRENT_BINARY_DIR}/third_party/gflags/include")
include_directories(${THIRD_PARTY_INCLUDE_DIRS}) include_directories(${THIRD_PARTY_INCLUDE_DIRS})
add_subdirectory("third_party/context")
add_subdirectory("third_party/zlib") add_subdirectory("third_party/zlib")
add_subdirectory("third_party/fmt") add_subdirectory("third_party/fmt")
add_subdirectory("third_party/googletest") add_subdirectory("third_party/googletest")
@ -71,6 +70,7 @@ add_subdirectory("third_party/gflags")
set(GFLAGS_USE_TARGET_NAMESPACE ON) set(GFLAGS_USE_TARGET_NAMESPACE ON)
set(gflags_DIR "${CMAKE_CURRENT_BINARY_DIR}/third_party/gflags") set(gflags_DIR "${CMAKE_CURRENT_BINARY_DIR}/third_party/gflags")
add_subdirectory("third_party/glog") add_subdirectory("third_party/glog")
add_subdirectory("third_party/context")
set(CURL_DISABLE_TESTS ON) set(CURL_DISABLE_TESTS ON)
set(CURL_CA_PATH "none" CACHE STRING "" FORCE) set(CURL_CA_PATH "none" CACHE STRING "" FORCE)

View File

@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.5...3.16)
project( project(
nova_context nova_context
VERSION 0.1.0 VERSION 0.1.0
LANGUAGES C ASM) LANGUAGES C CXX ASM)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)