mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 13:53:38 +02:00
22 lines
748 B
CMake
22 lines
748 B
CMake
#
|
|
# IncludeApplicationVersion.cmake
|
|
# cmake/macros
|
|
#
|
|
# Created by Leonardo Murillo on 07/14/2015.
|
|
# Copyright 2015 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
|
|
macro(INCLUDE_APPLICATION_VERSION)
|
|
if (DEFINED ENV{JOB_ID})
|
|
set (BUILD_SEQ $ENV{JOB_ID})
|
|
elseif (DEFINED ENV{ghprbPullId})
|
|
set (BUILD_SEQ "PR: $ENV{ghprbPullId} - Commit: $ENV{ghprbActualCommit}")
|
|
else ()
|
|
set(BUILD_SEQ "dev")
|
|
endif ()
|
|
configure_file("${MACRO_DIR}/ApplicationVersion.h.in" "${PROJECT_BINARY_DIR}/includes/ApplicationVersion.h")
|
|
include_directories("${PROJECT_BINARY_DIR}/includes")
|
|
endmacro(INCLUDE_APPLICATION_VERSION)
|