summaryrefslogtreecommitdiffstats
path: root/cmake/Functions.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/Functions.cmake')
-rw-r--r--cmake/Functions.cmake8
1 files changed, 7 insertions, 1 deletions
diff --git a/cmake/Functions.cmake b/cmake/Functions.cmake
index 3bdf86c83..95f279946 100644
--- a/cmake/Functions.cmake
+++ b/cmake/Functions.cmake
@@ -931,8 +931,14 @@ function(add_gn_build_aritfacts_to_target cmakeTarget ninjaTarget module buildDi
# config loop is a workaround to be able to add_custom_command per config
# note this is fixed in CMAKE.3.20 and should be cleaned up when 3.20 is
# the minimum cmake we support
- get_configs(config)
+ get_configs(configs)
get_architectures(archs)
+ if(NOT configs)
+ message(FATAL_ERROR "No valid configurations found !")
+ endif()
+ if(NOT archs)
+ message(FATAL_ERROR "No valid architectures found. In case of cross-compiling make sure you have CMAKE_SYSTEM_PROCESSOR in your toolchain file.")
+ endif()
foreach(config ${configs})
foreach(arch ${archs})
set(target ${ninjaTarget}_${config}_${arch})