2017-05-09 18:26:48 +02:00
|
|
|
# =============================================================================
|
2015-07-16 09:55:23 +02:00
|
|
|
# 2010 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes
|
|
|
|
# with no warranties. This code is yours to share, use and modify with no
|
|
|
|
# strings attached and no restrictions or obligations.
|
2016-01-24 13:27:52 +01:00
|
|
|
#
|
2015-07-16 09:55:23 +02:00
|
|
|
# For more information see g3log/LICENSE or refer refer to http://unlicense.org
|
2017-05-09 18:26:48 +02:00
|
|
|
# ==============================================================================
|
2015-07-16 09:55:23 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# Below are details for compiling on Windows and Linux by default only an
|
|
|
|
# example g3log binary is created the performance and unit tests creation can be
|
|
|
|
# enabled by switching their OPTIONs from OFF to ON --- See below at around line
|
|
|
|
# 110
|
2011-11-10 22:23:33 +01:00
|
|
|
|
2016-01-24 13:27:52 +01:00
|
|
|
# === WINDOWS ===
|
2020-07-09 06:42:55 +02:00
|
|
|
# Example for: Visual Studio 2013 (earlier should work too) 1. please use the
|
|
|
|
# "Visual Studio Command Prompt 12 (2013)" 2. from the g3log folder mkdir build
|
|
|
|
# cd build; 3. cmake -DCMAKE_BUILD_TYPE=Release -G "Visual Studio XXX" .. (cmake
|
|
|
|
# -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 12") MAKE SURE you check the
|
|
|
|
# CMake documentation so you are using the correct bit flags(64 bit etc). The
|
|
|
|
# "XXX" needs tto be replaced for your specific build system, ref: cmake docs.
|
2018-07-13 05:40:03 +02:00
|
|
|
#
|
2020-07-09 06:42:55 +02:00
|
|
|
# (Example from Appveyor Ci:
|
|
|
|
# https://github.com/KjellKod/g3log/blob/master/appveyor.yml cmake -G "Visual
|
|
|
|
# Studio 14 2015 Win64" -DADD_G3LOG_UNIT_TEST=ON ..)
|
2014-02-26 06:05:48 +01:00
|
|
|
#
|
2020-07-09 06:42:55 +02:00
|
|
|
# 1. msbuild g3log.sln /p:Configuration=Release
|
2011-11-05 17:36:07 +01:00
|
|
|
#
|
2020-07-09 06:42:55 +02:00
|
|
|
# Try to run an example, such as: 5. Release\g3log-FATAL-contract.exe
|
2011-11-05 17:36:07 +01:00
|
|
|
#
|
2014-02-26 06:05:48 +01:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# === LINUX: === To try this out from folder g3log: mkdir build cd build >>
|
|
|
|
# create makefiles in g3log/build directory cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
# make -jN (where N stands for number of cores you want to utilize)
|
2014-02-26 06:05:48 +01:00
|
|
|
#
|
|
|
|
# === Clang on Linux ===
|
2020-07-09 06:42:55 +02:00
|
|
|
# From g3log mkdir build && cd build cmake -DCMAKE_CXX_COMPILER=clang++ .. if
|
|
|
|
# you want to double-check settings: "VERBOSE=1 make" otherwise just run:
|
|
|
|
# "make -j"
|
2016-01-24 13:27:52 +01:00
|
|
|
#
|
2011-11-05 17:36:07 +01:00
|
|
|
# ============================================================================
|
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
cmake_minimum_required(VERSION 3.2)
|
2020-06-03 23:37:46 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
project(g3log CXX)
|
2020-06-03 23:37:46 +02:00
|
|
|
|
2020-12-16 14:51:26 +01:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2020-07-09 06:42:55 +02:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
2017-03-31 06:52:09 +02:00
|
|
|
|
2017-05-09 18:26:48 +02:00
|
|
|
if(NOT CMAKE_BUILD_TYPE AND NOT (MSVC_IDE OR XCODE))
|
2020-07-09 06:42:55 +02:00
|
|
|
set(CMAKE_BUILD_TYPE
|
|
|
|
Release
|
|
|
|
CACHE STRING "Build type, one of: Release, Debug" FORCE)
|
2017-03-31 06:52:09 +02:00
|
|
|
endif()
|
2017-05-09 18:26:48 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|
|
|
|
message(STATUS "Configuration types: ${CMAKE_CONFIGURATION_TYPES}")
|
2017-05-09 18:26:48 +02:00
|
|
|
|
2012-10-14 01:54:56 +02:00
|
|
|
# Detect 64 or 32 bit
|
2020-07-09 06:42:55 +02:00
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
# 64-bit project
|
|
|
|
set(64_BIT_OS TRUE)
|
|
|
|
message(STATUS "A 64-bit OS detected")
|
|
|
|
else()
|
|
|
|
set(64_BIT_OS FALSE)
|
|
|
|
message(STATUS "A 32-bit OS detected")
|
2012-10-14 01:54:56 +02:00
|
|
|
endif()
|
2011-11-10 22:23:33 +01:00
|
|
|
|
2011-11-05 17:36:07 +01:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# Calculate the version number
|
2022-11-08 17:31:37 +01:00
|
|
|
SET(MAJOR_VERSION 2)
|
2023-02-20 14:16:34 +01:00
|
|
|
SET(MINOR_VERSION 3)
|
2020-07-09 06:42:55 +02:00
|
|
|
|
2017-05-17 22:24:11 +02:00
|
|
|
IF ( NOT VERSION )
|
|
|
|
IF ( "${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Windows" )
|
2017-05-04 02:49:11 +02:00
|
|
|
message("windows: Extracting git software version")
|
2019-02-18 20:43:04 +01:00
|
|
|
execute_process(COMMAND cmd /c "git rev-list --branches HEAD | find /v " " /c" OUTPUT_VARIABLE GIT_VERSION WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
2017-05-04 02:49:11 +02:00
|
|
|
ELSE()
|
2017-12-27 21:09:40 +01:00
|
|
|
IF(UNIX OR ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
message( STATUS "nix: Extracting git software version" )
|
2017-05-04 02:49:11 +02:00
|
|
|
ELSE()
|
2017-12-27 21:09:40 +01:00
|
|
|
message( STATUS "unknown platform: extracting git software version" )
|
2017-05-04 02:49:11 +02:00
|
|
|
ENDIF()
|
2019-02-18 20:43:04 +01:00
|
|
|
execute_process(COMMAND bash "-c" "git rev-list --branches HEAD | wc -l | tr -d ' ' | tr -d '\n'" OUTPUT_VARIABLE GIT_VERSION WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
2017-05-04 02:49:11 +02:00
|
|
|
ENDIF()
|
2017-12-27 21:09:40 +01:00
|
|
|
|
2017-04-25 05:50:35 +02:00
|
|
|
math(EXPR VERSION-BASE ${GIT_VERSION}/255)
|
|
|
|
math(EXPR VERSION-REMAINDER ${GIT_VERSION}%255)
|
2017-12-27 21:09:40 +01:00
|
|
|
message( STATUS "git build version: ${GIT_VERSION}" )
|
|
|
|
message( STATUS "version base: ${VERSION-BASE}" )
|
|
|
|
message( STATUS "version remainder: ${VERSION-REMAINDER}" )
|
2020-07-09 15:33:25 +02:00
|
|
|
SET(BUILD_NUMBER ${VERSION-BASE})
|
|
|
|
SET(VERSION ${MAJOR_VERSION}.${MINOR_VERSION}.${BUILD_NUMBER}-${VERSION-REMAINDER})
|
2017-03-31 06:52:09 +02:00
|
|
|
ENDIF()
|
2017-05-17 22:31:19 +02:00
|
|
|
message( STATUS "Software Version: ${VERSION}" )
|
2017-03-31 06:52:09 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# ============================================================================
|
|
|
|
# G3LOG OPTIONAL FEATURES
|
|
|
|
# ============================================================================
|
|
|
|
include(${g3log_SOURCE_DIR}/Options.cmake)
|
2017-03-31 06:52:09 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# ============================================================================
|
|
|
|
# G3LOG iOS BUILD SUPPORT
|
|
|
|
# ============================================================================
|
|
|
|
include(${g3log_SOURCE_DIR}/iOSBuild.cmake)
|
2014-10-03 09:03:56 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
if(G3_IOS_LIB)
|
|
|
|
# G3_IOS_LIB is the pass used to generate all the other cmakefiles for the
|
|
|
|
# different architectures needed for the universal library. So we're done at
|
|
|
|
# here.
|
|
|
|
return()
|
|
|
|
endif()
|
2016-01-24 13:27:52 +01:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# =========================================================================
|
|
|
|
# G3 Macro definitions in Options.cmake are written to file this avoids having
|
|
|
|
# to re-state your definitions in your source code or compile options
|
|
|
|
# ==========================================================================
|
|
|
|
include(${g3log_SOURCE_DIR}/GenerateMacroDefinitionsFile.cmake)
|
2014-10-03 09:03:56 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# =========================================================================
|
|
|
|
# G3LOG BUILD
|
|
|
|
# ==========================================================================
|
|
|
|
include(${g3log_SOURCE_DIR}/Build.cmake)
|
2014-10-03 09:03:56 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# ============================================================================
|
|
|
|
# EXAMPLE OPTIONS: By defauls is ON. This will create 'g3log-FATAL-* examples'
|
|
|
|
# ============================================================================
|
|
|
|
# DISABLE WITH: -DADD_FATAL_EXAMPLE=OFF
|
|
|
|
include(${g3log_SOURCE_DIR}/example/Example.cmake)
|
2014-10-03 09:03:56 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# ============================================================================
|
|
|
|
# PERFORMANCE TEST OPTIONS: Performance operations for g3log
|
|
|
|
# ============================================================================
|
|
|
|
# ENABLE WITH: -DADD_G3LOG_PERFORMANCE=ON
|
|
|
|
include(${g3log_SOURCE_DIR}/test_performance/Performance.cmake)
|
2017-12-27 21:09:40 +01:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# ==========================================================================
|
|
|
|
# UNIT TEST OPTIONS:
|
|
|
|
# ============================================================================
|
|
|
|
# ENABLE WITH: -DADD_G3LOG_UNIT_TEST=ON
|
|
|
|
include(${g3log_SOURCE_DIR}/test_unit/Test.cmake)
|
2019-05-14 06:42:15 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
# ==========================================================================
|
|
|
|
# CMAKE INSTALL AND CPACK OPTIONS:
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# Alternative 1: Package handling is done AFTER all other CMake setup usage:
|
|
|
|
# make package Check the output result and install accordingly.
|
|
|
|
#
|
|
|
|
# Alternative 2: usage: make; sudo make install
|
|
|
|
#
|
|
|
|
# For OSX you can also install an older version using 'brew install'
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
include(${g3log_SOURCE_DIR}/CPackLists.txt)
|
2014-10-03 09:03:56 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
if(MINGW)
|
|
|
|
# this enables strerror_s
|
|
|
|
add_definitions(-DMINGW_HAS_SECURE_API)
|
|
|
|
endif()
|
2012-10-14 01:54:56 +02:00
|
|
|
|
2020-07-09 06:42:55 +02:00
|
|
|
if(NOT MSVC)
|
|
|
|
message(
|
|
|
|
STATUS
|
|
|
|
"\n\n
|
2015-09-01 07:45:47 +02:00
|
|
|
*******************************************************************
|
2016-01-24 13:27:52 +01:00
|
|
|
Please do 'make clean-cmake' before next cmake generation.
|
|
|
|
It is a good idea to purge your build directory of CMake
|
2015-09-01 07:45:47 +02:00
|
|
|
generated cache files
|
|
|
|
*******************************************************************
|
2020-07-09 06:42:55 +02:00
|
|
|
")
|
|
|
|
add_custom_target(clean-cmake COMMAND ${CMAKE_COMMAND} -P
|
|
|
|
${g3log_SOURCE_DIR}/CleanAll.cmake)
|
|
|
|
endif()
|