Gyorgy Szing | 30fa987 | 2017-12-05 01:08:47 +0000 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
Mate Toth-Pal | 65c935e | 2018-01-17 18:42:13 +0100 | [diff] [blame^] | 2 | # Copyright (c) 2017-2018, Arm Limited. All rights reserved. |
Gyorgy Szing | 30fa987 | 2017-12-05 01:08:47 +0000 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #------------------------------------------------------------------------------- |
| 7 | |
| 8 | #This file holds information of a specific build configuration of this project. |
Gyorgy Szing | 30fa987 | 2017-12-05 01:08:47 +0000 | [diff] [blame] | 9 | |
| 10 | #Include board specific config (CPU, etc...) |
| 11 | include("Common/BoardSSE200") |
| 12 | |
| 13 | #Use any ARMCLANG version found on PATH. Note: Only versions supported by the |
| 14 | #build system will work. A file cmake/Common/CompilerArmClangXY.cmake |
| 15 | #must be present with a matching version. |
| 16 | include("Common/FindArmClang") |
Mate Toth-Pal | 65c935e | 2018-01-17 18:42:13 +0100 | [diff] [blame^] | 17 | if(NOT EXISTS "${CMAKE_CURRENT_LIST_DIR}/cmake/Common/${ARMCLANG_MODULE}.cmake") |
| 18 | message(FATAL_ERROR "ERROR: Unsupported ARMCLANG compiler version found on PATH.") |
| 19 | endif() |
Gyorgy Szing | 30fa987 | 2017-12-05 01:08:47 +0000 | [diff] [blame] | 20 | include("Common/${ARMCLANG_MODULE}") |
| 21 | |
| 22 | ##These variables select how the projects are built. Each project will set |
| 23 | #various project specific settings (e.g. what files to build, macro |
| 24 | #definitions) based on these. |
| 25 | set (REGRESSION True) |
| 26 | set (CORE_TEST False) |
Tamas Ban | 581034a | 2017-12-19 19:54:37 +0000 | [diff] [blame] | 27 | set (BL2 True) |
Gyorgy Szing | 30fa987 | 2017-12-05 01:08:47 +0000 | [diff] [blame] | 28 | |
Mate Toth-Pal | 65c935e | 2018-01-17 18:42:13 +0100 | [diff] [blame^] | 29 | include ("${CMAKE_CURRENT_LIST_DIR}/CommonConfig.cmake") |
Gyorgy Szing | 30fa987 | 2017-12-05 01:08:47 +0000 | [diff] [blame] | 30 | |