cmake/Tests/CMakeOnly/TargetScope/CMakeLists.txt

14 lines
309 B
CMake
Raw Normal View History

2021-09-14 00:13:48 +02:00
cmake_minimum_required (VERSION 2.8.12)
2012-04-19 19:04:21 +03:00
project(TargetScope NONE)
add_subdirectory(Sub)
if(TARGET SubLibLocal)
message(FATAL_ERROR "SubLibLocal visible in top directory")
endif()
if(NOT TARGET SubLibGlobal)
message(FATAL_ERROR "SubLibGlobal not visible in top directory")
endif()
add_subdirectory(Sib)