60f965cce3
Some checks failed
rpcrypto-build / build (Release, mips64el-linux-gnuabi64.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, mipsel-openwrt-linux.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Successful in 1m9s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Successful in 1m11s
rpcrypto-build / build (Debug, hisiv500.toolchain.cmake) (push) Successful in 1m23s
rpcrypto-build / build (Debug, host-afl.toolchain.cmake) (push) Failing after 1m50s
rpcrypto-build / build (Debug, mips64el-linux-gnuabi64.toolchain.cmake) (push) Successful in 1m9s
rpcrypto-build / build (Debug, host.toolchain.cmake) (push) Failing after 2m23s
rpcrypto-build / build (Debug, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Successful in 1m14s
rpcrypto-build / build (Debug, mipsel-openwrt-linux.toolchain.cmake) (push) Successful in 1m22s
rpcrypto-build / build (Release, host-afl.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Release, host.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Release, hisiv500.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Has been cancelled
41 lines
1.1 KiB
CMake
41 lines
1.1 KiB
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")
|
|
|
|
## CMP0063
|
|
if (POLICY CMP0063)
|
|
cmake_policy(SET CMP0063 NEW)
|
|
endif ()
|
|
if (POLICY CMP0048)
|
|
cmake_policy(SET CMP0048 NEW)
|
|
endif ()
|
|
set(FMT_USE_CPP11 OFF CACHE BOOL "Use C++11" FORCE)
|
|
set(FMT_TEST OFF CACHE BOOL "Build tests" FORCE)
|
|
set(FMT_USE_CPP11 OFF CACHE BOOL "Use C++11" FORCE)
|
|
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)
|
|
|
|
install(TARGETS ${PROJECT_NAME} DESTINATION lib)
|
|
|
|
if(ULIB_BUILD_TESTS)
|
|
enable_testing()
|
|
add_subdirectory(3party/googletest)
|
|
add_subdirectory(tests)
|
|
endif() |