2015-03-24 08:12:55 +03:00
|
|
|
|
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2015 Geoffrey Viola <geoffrey.viola@asirobots.com>
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
|
|
|
# License text for the above reference.)
|
|
|
|
|
|
|
|
#Setup Greenhills MULTI specific compilation information
|
2015-09-06 08:15:26 +03:00
|
|
|
|
|
|
|
if (NOT GHS_INT_DIRECTORY)
|
|
|
|
#Assume the C:/ghs/int#### directory that is latest is prefered
|
|
|
|
set(GHS_EXPECTED_ROOT "C:/ghs")
|
|
|
|
if (EXISTS ${GHS_EXPECTED_ROOT})
|
|
|
|
FILE(GLOB GHS_CANDIDATE_INT_DIRS RELATIVE
|
|
|
|
${GHS_EXPECTED_ROOT} ${GHS_EXPECTED_ROOT}/*)
|
|
|
|
string(REGEX MATCHALL "int[0-9][0-9][0-9][0-9]" GHS_CANDIDATE_INT_DIRS
|
|
|
|
${GHS_CANDIDATE_INT_DIRS})
|
|
|
|
if (GHS_CANDIDATE_INT_DIRS)
|
|
|
|
list(SORT GHS_CANDIDATE_INT_DIRS)
|
|
|
|
list(GET GHS_CANDIDATE_INT_DIRS -1 GHS_INT_DIRECTORY)
|
|
|
|
string(CONCAT GHS_INT_DIRECTORY ${GHS_EXPECTED_ROOT} "/"
|
|
|
|
${GHS_INT_DIRECTORY})
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
#Try to look for known registry values
|
|
|
|
if (NOT GHS_INT_DIRECTORY)
|
|
|
|
find_path(GHS_INT_DIRECTORY INTEGRITY.ld PATHS
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\GreenHillsSoftware6433c345;InstallLocation]" #int1122
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\GreenHillsSoftware289b6625;InstallLocation]" #int1104
|
|
|
|
)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
set(GHS_INT_DIRECTORY ${GHS_INT_DIRECTORY} CACHE PATH
|
|
|
|
"Path to integrity directory")
|
|
|
|
endif ()
|
|
|
|
|
2015-03-24 08:12:55 +03:00
|
|
|
set(GHS_OS_DIR ${GHS_INT_DIRECTORY} CACHE PATH "OS directory")
|
|
|
|
set(GHS_PRIMARY_TARGET "arm_integrity.tgt" CACHE STRING "target for compilation")
|
|
|
|
set(GHS_BSP_NAME "simarm" CACHE STRING "BSP name")
|
|
|
|
set(GHS_CUSTOMIZATION "" CACHE FILEPATH "optional GHS customization")
|
|
|
|
mark_as_advanced(GHS_CUSTOMIZATION)
|
|
|
|
set(GHS_GPJ_MACROS "" CACHE STRING "optional GHS macros generated in the .gpjs for legacy reasons")
|
|
|
|
mark_as_advanced(GHS_GPJ_MACROS)
|