Some checks failed
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Successful in 1m34s
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Successful in 2m46s
sm-rpc / build (Debug, host.gcc) (push) Failing after 1m28s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Successful in 2m14s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Successful in 2m8s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Successful in 5m35s
sm-rpc / build (Release, host.gcc) (push) Failing after 1m55s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Successful in 7m21s
25 lines
853 B
CMake
25 lines
853 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
message("Parsing public/common/TracyVersion.hpp file")
|
|
|
|
file(READ "${CMAKE_CURRENT_LIST_DIR}/../public/common/TracyVersion.hpp" version)
|
|
|
|
# Note: This looks for a specific pattern in TracyVersion.hpp, if it changes
|
|
# this needs updating.
|
|
string(REGEX MATCH "Major = ([0-9]+)" _ ${version})
|
|
|
|
# This works do to the above () subexpression selection. See
|
|
# https://cmake.org/cmake/help/latest/command/string.html#regex-match for more
|
|
# details
|
|
set(TRACY_VERSION_MAJOR ${CMAKE_MATCH_1})
|
|
|
|
string(REGEX MATCH "Minor = ([0-9]+)" _ ${version})
|
|
set(TRACY_VERSION_MINOR ${CMAKE_MATCH_1})
|
|
|
|
string(REGEX MATCH "Patch = ([0-9]+)" _ ${version})
|
|
set(TRACY_VERSION_PATCH ${CMAKE_MATCH_1})
|
|
|
|
set(TRACY_VERSION_STRING "${TRACY_VERSION_MAJOR}.${TRACY_VERSION_MINOR}.${TRACY_VERSION_PATCH}")
|
|
|
|
message("VERSION ${TRACY_VERSION_STRING}")
|