blob: 97a79d082386951ee4af7d831638ea9157f7ac2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
cmake_policy(SET CMP0057 NEW)
project(ProjectA C C C)
project(ProjectB C C CXX CXX)
get_property(langs GLOBAL PROPERTY ENABLED_LANGUAGES)
foreach(lang C CXX)
if(NOT lang IN_LIST langs)
message(FATAL_ERROR "Expected language '${lang}' to be enabled.")
endif()
endforeach()
|