mirror of
https://github.com/KjellKod/g3log.git
synced 2024-12-12 10:23:50 +01:00
41 lines
1.9 KiB
CMake
41 lines
1.9 KiB
CMake
# ==========================================================================
|
|
# 2015 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.
|
|
#
|
|
# For more information see g3log/LICENSE or refer refer to http://unlicense.org
|
|
# ============================================================================*/
|
|
|
|
# Prerequisite : Options.cmake should run first
|
|
|
|
SET(HEADER "/** ==========================================================================
|
|
* 2015 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.
|
|
*
|
|
* For more information see g3log/LICENSE or refer refer to http://unlicense.org
|
|
* ============================================================================*/")
|
|
|
|
|
|
|
|
message( STATUS "" )
|
|
message( STATUS "COMPILE_DEFINITIONS:\n\t[${G3_DEFINITIONS}]" )
|
|
message( STATUS "" )
|
|
SET(GENERATED_G3_DEFINITIONS "${CMAKE_CURRENT_BINARY_DIR}/include/g3log/generated_definitions.hpp")
|
|
file(REMOVE ${GENERATED_G3_DEFINITIONS} )
|
|
FILE(WRITE ${GENERATED_G3_DEFINITIONS} "// AUTO GENERATED MACRO DEFINITIONS FOR G3LOG\n\n")
|
|
FILE(APPEND ${GENERATED_G3_DEFINITIONS} "${HEADER}\n")
|
|
FILE(APPEND ${GENERATED_G3_DEFINITIONS} "#pragma once\n\n")
|
|
FILE(APPEND ${GENERATED_G3_DEFINITIONS} "// CMake induced definitions below. See g3log/Options.cmake for details.\n\n")
|
|
|
|
FOREACH(definition ${G3_DEFINITIONS} )
|
|
FILE(APPEND ${GENERATED_G3_DEFINITIONS} "#define ${definition}\n")
|
|
ENDFOREACH(definition)
|
|
|
|
message( STATUS "Generated ${GENERATED_G3_DEFINITIONS}" )
|
|
file(READ ${GENERATED_G3_DEFINITIONS} generated_content)
|
|
|
|
message( STATUS "******************** START *************************" )
|
|
MESSAGE(${generated_content})
|
|
message( STATUS "******************** END *************************" )
|