mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
8db85c9a5a
* add SSDP name field * YALL - yet another led layout * led layout migration * add initial vscode config * merge clearAll with clear, rename Hyperion::compStateChange * simpler components api * Corrected code formatting + triggered PR build * fix: regression from #636 * Support for color patterns Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
13 lines
834 B
CMake
13 lines
834 B
CMake
|
|
execute_process( COMMAND git log -1 --format=%cn-%t/%h-%ct WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE BUILD_ID ERROR_QUIET )
|
|
execute_process( COMMAND sh -c "git branch | grep '^*' | sed 's;^*;;g' " WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE VERSION_ID ERROR_QUIET )
|
|
execute_process( COMMAND sh -c "git remote --verbose | grep origin | grep fetch | cut -f2 | cut -d' ' -f1" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE GIT_REMOTE_PATH ERROR_QUIET )
|
|
|
|
STRING ( STRIP "${BUILD_ID}" BUILD_ID )
|
|
STRING ( STRIP "${VERSION_ID}" VERSION_ID )
|
|
STRING ( STRIP "${GIT_REMOTE_PATH}" GIT_REMOTE_PATH )
|
|
SET ( HYPERION_BUILD_ID "${VERSION_ID} (${BUILD_ID})" )
|
|
SET ( HYPERION_GIT_REMOTE "${GIT_REMOTE_PATH}" )
|
|
message ( STATUS "Current Version: ${HYPERION_VERSION}" )
|
|
message ( STATUS " - Build: ${HYPERION_BUILD_ID}" )
|