You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
414 B
12 lines
414 B
cmake_policy(SET CMP0126 NEW)
|
|
set(example_SOURCE_DIR "bad/path")
|
|
set(example_BINARY_DIR "bad/path")
|
|
project(example LANGUAGES)
|
|
|
|
if(NOT "${example_SOURCE_DIR}" STREQUAL "${PROJECT_SOURCE_DIR}")
|
|
message(FATAL_ERROR "example_SOURCE_DIR not set to expected value")
|
|
endif()
|
|
if(NOT "${example_BINARY_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
|
|
message(FATAL_ERROR "example_BINARY_DIR not set to expected value")
|
|
endif()
|