evmc/CableBuildInfo.cmake

80 lines
2.5 KiB
CMake
Raw Normal View History

# Copyright 2018 Pawel Bylica.
# Licensed under the Apache License, Version 2.0. See the LICENSE file.
if(cable_build_info_included)
return()
endif()
set(cable_build_info_included TRUE)
set(cable_buildinfo_template_dir ${CMAKE_CURRENT_LIST_DIR}/buildinfo)
function(cable_add_buildinfo_library)
cmake_parse_arguments("" "" PREFIX "" ${ARGN})
# Come up with the target and C function name.
if(_PREFIX)
set(NAME ${_PREFIX}-buildinfo)
set(FUNCTION_NAME ${_PREFIX}_get_buildinfo)
else()
set(NAME buildinfo)
set(FUNCTION_NAME get_buildinfo)
endif()
set(binary_dir ${CMAKE_CURRENT_BINARY_DIR})
if(CMAKE_CONFIGURATION_TYPES)
set(build_type ${CMAKE_CFG_INTDIR})
else()
set(build_type ${CMAKE_BUILD_TYPE})
endif()
# Find git here to allow the user to provide hints.
find_package(Git)
# Git info target.
#
# This target is named <name>-git and is always built.
# The executed script gitinfo.cmake check git status and updates files
# containing git information if anything has changed.
add_custom_target(
${NAME}-git
COMMAND ${CMAKE_COMMAND}
-DGIT=${GIT_EXECUTABLE}
-DSOURCE_DIR=${PROJECT_SOURCE_DIR}
-DBINARY_DIR=${binary_dir}
-P ${cable_buildinfo_template_dir}/gitinfo.cmake
)
add_custom_command(
COMMENT "Updating ${NAME}:"
OUTPUT ${binary_dir}/${NAME}.c
COMMAND ${CMAKE_COMMAND}
-DBINARY_DIR=${binary_dir}
-DNAME=${NAME}
-DFUNCTION_NAME=${FUNCTION_NAME}
-DPROJECT_VERSION=${PROJECT_VERSION}
-DSYSTEM_NAME=${CMAKE_SYSTEM_NAME}
-DSYSTEM_PROCESSOR=${CMAKE_SYSTEM_PROCESSOR}
-DCOMPILER_ID=${CMAKE_CXX_COMPILER_ID}
-DCOMPILER_VERSION=${CMAKE_CXX_COMPILER_VERSION}
-DBUILD_TYPE=${build_type}
-P ${cable_buildinfo_template_dir}/buildinfo.cmake
DEPENDS
${cable_buildinfo_template_dir}/buildinfo.cmake
${cable_buildinfo_template_dir}/buildinfo.c.in
${NAME}-git
${binary_dir}/git_commit_hash.txt
)
string(TIMESTAMP TIMESTAMP)
configure_file(${cable_buildinfo_template_dir}/buildinfo.h.in ${binary_dir}/${NAME}.h)
# Add buildinfo library under given name.
# Make is static and do not build by default until some other target will actually use it.
add_library(${NAME} STATIC EXCLUDE_FROM_ALL ${binary_dir}/${NAME}.c ${binary_dir}/${NAME}.h)
target_include_directories(${NAME} PUBLIC ${binary_dir})
endfunction()