https://github.com/Kitware/CMake
Raw File
Tip revision: 7612abd52f192a13848a4d74191633a008892449 authored by Brad King on 20 September 2021, 16:43:52 UTC
CMake 3.21.3
Tip revision: 7612abd
CMakeLists.txt
add_executable(test test.cxx)

if (NOT DEFINED_AFTER_SUBDIRS_COMMAND)
  message(FATAL_ERROR "DEFINED_AFTER_SUBDIRS_COMMAND should be defined.")
endif()

string(FIND "${CMAKE_CURRENT_BINARY_DIR}" "SubDir/Executable" location)
string(LENGTH "${CMAKE_CURRENT_BINARY_DIR}" dirLength)
math(EXPR suffixLength "${dirLength} - ${location}")

if (NOT suffixLength EQUAL 17)
  message(FATAL_ERROR "CMAKE_CURRENT_BINARY_DIR does not end with \"SubDir/Executable\"")
endif()
back to top