feat init task
Some checks failed
android / build (armeabi-v7a) (push) Successful in 20m0s
android / build (arm64-v8a) (push) Successful in 20m7s
android / build (x86) (push) Successful in 20m10s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 31s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 31s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Failing after 31s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Failing after 32s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 31s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 32s
android / build (x86_64) (push) Failing after 13m16s
linux-x64-clang / linux-clang (Release) (push) Successful in 8m20s
linux-x64-clang / linux-clang (Debug) (push) Successful in 8m48s
linux-arm-gcc / linux-gcc-arm (Release) (push) Successful in 12m37s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Successful in 14m19s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Successful in 12m48s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Successful in 16m17s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 12m9s
linux-x86-gcc / linux-gcc (Debug) (push) Successful in 13m22s
linux-x86-gcc / linux-gcc (Release) (push) Successful in 13m51s
linux-x64-gcc / linux-gcc (Release) (push) Successful in 11m56s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Successful in 13m7s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Successful in 14m40s

This commit is contained in:
tqcq 2025-03-02 19:49:04 +08:00
parent 26e0a09306
commit 6bae6cdc87
2 changed files with 1 additions and 18 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ build/
compile_commands.json
.gdb_history
.cmake.conf
third_party/

View File

@ -223,26 +223,8 @@ if((CMAKE_SYSTEM_PROCESSOR MATCHES "riscv64") OR (CMAKE_SYSTEM_PROCESSOR MATCHES
endif()
endif()
# set(LIB_NAMES tile)
#
# if(("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") OR (MINGW) OR (HAIKU) OR
# ("${CMAKE_SYSTEM_NAME}" STREQUAL "FreeBSD") OR ("${CMAKE_SYSTEM_NAME}"
# STREQUAL "GNU") OR ("${CMAKE_SYSTEM_NAME}" STREQUAL "OpenBSD") OR
# ("${CMAKE_SYSTEM_NAME}" STREQUAL "Fuchsia") OR ("${CMAKE_SYSTEM_NAME}"
# STREQUAL "DragonFly") OR ("${CMAKE_SYSTEM_NAME}" STREQUAL "SunOS")) # FIXME:
# It should be "GNU ld # for elf" set(LIB_NAMES -Wl,--whole-archive ${LIB_NAMES}
# -Wl,--no-whole-archive) elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
# set(LIB_NAMES -Wl,-all_load ${LIB_NAMES}) endif()
add_library(tile::tile ALIAS tile)
# add_library(tile SHARED $<TARGET_OBJECTS:tile>) target_include_directories(
# tile PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/third_party/fmt/include"
# "${CMAKE_CURRENT_BINARY_DIR}/third_party/glog"
# "${CMAKE_CURRENT_SOURCE_DIR}/third_party/glog/src"
# "${CMAKE_CURRENT_SOURCE_DIR}" RPIVATE
# "${CMAKE_CURRENT_BINARY_DIR}/third_party/gflags/include")
# target_link_libraries( tile PRIVATE ${WHOLE_ARCHIVE_PREFIX} gflags::gflags
# glog::glog libcurl fmt::fmt ${NO_WHOLE_ARCHIVE_PREFIX})
if(TILE_BUILD_TESTS)
enable_testing()