e6cc0c9e81
Some checks failed
rpcrypto-build / build (Release, host-afl.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 1m8s
rpcrypto-build / build (Debug, hisiv500.toolchain.cmake) (push) Successful in 1m13s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Successful in 1m12s
rpcrypto-build / build (Debug, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Successful in 1m24s
rpcrypto-build / build (Debug, mipsel-openwrt-linux.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Debug, host-afl.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Release, hisiv500.toolchain.cmake) (push) Has been cancelled
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Has been cancelled
linux-mips64-gcc / linux-gcc-mips64el (push) Failing after 3m2s
51 lines
1.4 KiB
CMake
51 lines
1.4 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)
|
|
|
|
option(ULIB_BUILD_TESTS "Build tests" OFF)
|
|
option(ULIB_SHARED_LIB "Build shared library" OFF)
|
|
|
|
if (ULIB_SHARED_LIB)
|
|
add_library(${PROJECT_NAME} SHARED "")
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
else()
|
|
add_library(${PROJECT_NAME} STATIC "")
|
|
endif()
|
|
|
|
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)
|
|
|
|
|
|
target_sources(${PROJECT_NAME} PRIVATE
|
|
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() |