1
0
mirror of synced 2024-11-24 15:50:16 +01:00

build: Fixed setting variable in plugin and added version define check

This commit is contained in:
WerWolv 2022-08-03 16:36:21 +02:00
parent c34df428dc
commit 90d243e0ba

View File

@ -8,6 +8,10 @@ if(CMAKE_BUILD_TYPE STREQUAL "Release")
endif() endif()
macro(addVersionDefines) macro(addVersionDefines)
if (NOT IMHEX_VERSION)
message(FATAL_ERROR "IMHEX_VERSION is not defined")
endif ()
if (IS_DIRECTORY "${CMAKE_SOURCE_DIR}/.git") if (IS_DIRECTORY "${CMAKE_SOURCE_DIR}/.git")
# Get the current working branch # Get the current working branch
execute_process( execute_process(
@ -325,7 +329,7 @@ macro(setVariableInParent variable value)
get_directory_property(hasParent PARENT_DIRECTORY) get_directory_property(hasParent PARENT_DIRECTORY)
if (hasParent) if (hasParent)
set(${variable} "${${value}}" PARENT_SCOPE) set(${variable} "${value}" PARENT_SCOPE)
else () else ()
set(${variable} "${value}") set(${variable} "${value}")
endif () endif ()