Skip to content
Snippets Groups Projects
Commit 51d22372 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Added special workaround for projects built on Gaudi v28r2

parent 7bfa0228
No related branches found
No related tags found
1 merge request!312Fixes to CMake modules
......@@ -53,4 +53,12 @@ if(NOT EXISTS "${GaudiProject_DIR}/BinaryTagUtils.cmake")
set(CMAKE_BUILD_TYPE ${type} CACHE STRING
"Choose the type of build, options are: empty, Debug, Release, Coverage, Profile, RelWithDebInfo, MinSizeRel.")
endif()
elseif(EXISTS "${GaudiProject_DIR}/../GaudiConfig.cmake")
# Special workaround for Gaudi v28r2
file(READ "${GaudiProject_DIR}/../GaudiConfig.cmake" out)
if(out MATCHES "Gaudi_VERSION v28r2")
string(REGEX MATCH ".*/LCG_externals_(.+)\\.txt" out "${LCG_TOOLCHAIN_INFO}")
set(LCG_platform ${CMAKE_MATCH_1}
CACHE STRING "Platform ID for the AA project binaries.")
endif()
endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment