You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
559 B
CMake
27 lines
559 B
CMake
include(CMakePrintHelpers)
|
|
|
|
|
|
|
|
include(configLib)
|
|
SET(PLATFORMFOLDER Platforms/FVP)
|
|
include(configPlatform)
|
|
include(configBoot)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Config app
|
|
function (configApp project)
|
|
# When the C compiler is used to process ASM files, the fp16 option
|
|
# is not always recognized.
|
|
# So, FP16 option is ignored when building boot code
|
|
# which is containing ASM
|
|
configcore(${project} YES)
|
|
configboot(${project})
|
|
set_platform_core()
|
|
core_includes(${project})
|
|
SET(PLATFORMID ${PLATFORMID} PARENT_SCOPE)
|
|
SET(COREID ${COREID} PARENT_SCOPE)
|
|
endfunction() |