2728f2d5e7
Some checks failed
rpcrypto-build / build (Debug, hisiv500.toolchain.cmake) (push) Successful in 1m6s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Successful in 1m5s
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Successful in 1m19s
rpcrypto-build / build (Debug, mips64el-linux-gnuabi64.toolchain.cmake) (push) Successful in 1m6s
rpcrypto-build / build (Debug, host.toolchain.cmake) (push) Failing after 2m23s
rpcrypto-build / build (Debug, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Successful in 1m6s
rpcrypto-build / build (Debug, mipsel-openwrt-linux.toolchain.cmake) (push) Successful in 1m21s
rpcrypto-build / build (Release, hisiv500.toolchain.cmake) (push) Successful in 1m12s
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Successful in 1m17s
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Successful in 1m27s
rpcrypto-build / build (Debug, host-afl.toolchain.cmake) (push) Successful in 4m30s
rpcrypto-build / build (Release, mips64el-linux-gnuabi64.toolchain.cmake) (push) Successful in 1m12s
rpcrypto-build / build (Release, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Successful in 1m21s
rpcrypto-build / build (Release, host-afl.toolchain.cmake) (push) Successful in 2m56s
rpcrypto-build / build (Release, mipsel-openwrt-linux.toolchain.cmake) (push) Successful in 1m13s
rpcrypto-build / build (Release, host.toolchain.cmake) (push) Has been cancelled
44 lines
1.2 KiB
CMake
44 lines
1.2 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)
|
|
|
|
add_executable(ulib_main_test src/main.cpp)
|
|
target_link_libraries(ulib_main_test PRIVATE ${PROJECT_NAME})
|
|
|
|
install(TARGETS ${PROJECT_NAME} DESTINATION lib)
|
|
|
|
if(ULIB_BUILD_TESTS)
|
|
enable_testing()
|
|
add_subdirectory(3party/googletest)
|
|
add_subdirectory(tests)
|
|
endif() |