db3fd0d6b6
Some checks failed
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Failing after 47s
rpcrypto-build / build (Release, mips64el-linux-gnuabi64.toolchain.cmake) (push) Successful in 45s
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Failing after 11m39s
rpcrypto-build / build (Debug, hisiv500.toolchain.cmake) (push) Failing after 11m25s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Failing after 11m24s
rpcrypto-build / build (Debug, host-afl.toolchain.cmake) (push) Failing after 11m17s
rpcrypto-build / build (Debug, host.toolchain.cmake) (push) Failing after 11m1s
rpcrypto-build / build (Debug, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Failing after 10m59s
rpcrypto-build / build (Release, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Failing after 1m42s
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Failing after 15m15s
rpcrypto-build / build (Release, hisiv500.toolchain.cmake) (push) Failing after 13m6s
rpcrypto-build / build (Release, host-afl.toolchain.cmake) (push) Failing after 13m44s
rpcrypto-build / build (Release, host.toolchain.cmake) (push) Failing after 12m32s
rpcrypto-build / build (Release, mipsel-openwrt-linux.toolchain.cmake) (push) Failing after 11m53s
rpcrypto-build / build (Debug, mips64el-linux-gnuabi64.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Debug, mipsel-openwrt-linux.toolchain.cmake) (push) Has been cancelled
31 lines
909 B
CMake
31 lines
909 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(ulib LANGUAGES CXX VERSION 0.1.0)
|
|
set(CMAKE_CXX_STANDARD 98)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
find_package(Threads REQUIRED)
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
|
|
|
set(FMT_USE_CPP11 OFF)
|
|
set(FMT_TEST OFF)
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/3party/fmt)
|
|
|
|
option(ULIB_BUILD_TESTS "Build tests" OFF)
|
|
|
|
add_library(${PROJECT_NAME} STATIC
|
|
src/ulib/empty.cpp
|
|
src/ulib/log/logger.cpp
|
|
src/ulib/log/log.cpp
|
|
src/ulib/log/level.cpp
|
|
)
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC fmt::fmt)
|
|
target_compile_definitions(${PROJECT_NAME} PRIVATE ULIB_LIBRARY_IMPL)
|
|
target_include_directories(${PROJECT_NAME} PUBLIC src)
|
|
|
|
add_executable(ulib_main_test src/main.cpp)
|
|
target_link_libraries(ulib_main_test PRIVATE ${PROJECT_NAME})
|
|
|
|
install(TARGETS ${PROJECT_NAME} DESTINATION lib)
|