mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 07:53:31 +01:00
88 lines
2.7 KiB
CMake
88 lines
2.7 KiB
CMake
|
cmake_minimum_required(VERSION 2.8.12)
|
||
|
|
||
|
project(Easyloggingpp CXX)
|
||
|
|
||
|
macro(require_cpp11)
|
||
|
if (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.0)
|
||
|
# CMake 3.1 has built-in CXX standard checks.
|
||
|
message("-- Setting C++11")
|
||
|
set(CMAKE_CXX_STANDARD 11)
|
||
|
set(CMAKE_CXX_STANDARD_REQUIRED on)
|
||
|
else()
|
||
|
if (CMAKE_CXX_COMPILER_ID MATCHES "GCC")
|
||
|
message ("-- GNU CXX (-std=c++11)")
|
||
|
list(APPEND CMAKE_CXX_FLAGS "-std=c++11")
|
||
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||
|
message ("-- CLang CXX (-std=c++11)")
|
||
|
list(APPEND CMAKE_CXX_FLAGS "-std=c++11")
|
||
|
else()
|
||
|
message ("-- Easylogging++ requires C++11. Your compiler does not support it.")
|
||
|
endif()
|
||
|
endif()
|
||
|
endmacro()
|
||
|
|
||
|
option(test "Build all tests" OFF)
|
||
|
option(build_static_lib "Build easyloggingpp as a static library" OFF)
|
||
|
option(lib_utc_datetime "Build library with UTC date/time logging" OFF)
|
||
|
|
||
|
set(ELPP_MAJOR_VERSION "9")
|
||
|
set(ELPP_MINOR_VERSION "95")
|
||
|
set(ELPP_PATCH_VERSION "0")
|
||
|
set(ELPP_VERSION_STRING "${ELPP_MAJOR_VERSION}.${ELPP_MINOR_VERSION}.${ELPP_PATCH_VERSION}")
|
||
|
|
||
|
set(ELPP_INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include" CACHE PATH "The directory the headers are installed in")
|
||
|
|
||
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
|
||
|
|
||
|
install(FILES
|
||
|
src/easylogging++.h
|
||
|
src/easylogging++.cc
|
||
|
DESTINATION "${ELPP_INCLUDE_INSTALL_DIR}"
|
||
|
COMPONENT dev)
|
||
|
|
||
|
if (build_static_lib)
|
||
|
if (lib_utc_datetime)
|
||
|
add_definitions(-DELPP_UTC_DATETIME)
|
||
|
endif()
|
||
|
|
||
|
require_cpp11()
|
||
|
add_library(easyloggingpp STATIC src/easylogging++.cc)
|
||
|
|
||
|
install(TARGETS
|
||
|
easyloggingpp
|
||
|
ARCHIVE DESTINATION lib)
|
||
|
endif()
|
||
|
|
||
|
export(PACKAGE ${PROJECT_NAME})
|
||
|
|
||
|
|
||
|
########################################## Unit Testing ###################################
|
||
|
if (test)
|
||
|
# We need C++11
|
||
|
require_cpp11()
|
||
|
set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
|
||
|
|
||
|
find_package (gtest REQUIRED)
|
||
|
|
||
|
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
|
||
|
|
||
|
enable_testing()
|
||
|
|
||
|
add_executable(easyloggingpp-unit-tests
|
||
|
src/easylogging++.cc
|
||
|
test/main.cc
|
||
|
)
|
||
|
|
||
|
target_compile_definitions(easyloggingpp-unit-tests PUBLIC
|
||
|
ELPP_FEATURE_ALL
|
||
|
ELPP_LOGGING_FLAGS_FROM_ARG
|
||
|
ELPP_NO_DEFAULT_LOG_FILE
|
||
|
ELPP_FRESH_LOG_FILE
|
||
|
)
|
||
|
|
||
|
# Standard linking to gtest stuff.
|
||
|
target_link_libraries(easyloggingpp-unit-tests gtest gtest_main)
|
||
|
|
||
|
add_test(NAME easyloggingppUnitTests COMMAND easyloggingpp-unit-tests -v)
|
||
|
endif()
|