The Meson Build System
http://mesonbuild.com/
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.
10 lines
311 B
10 lines
311 B
cmake_minimum_required(VERSION 3.7) |
|
project(testPro) |
|
|
|
if(NOT "${SOME_CMAKE_VAR}" STREQUAL "something") |
|
message(FATAL_ERROR "Setting the CMake var failed") |
|
endif() |
|
|
|
if(NOT "${CMAKE_PREFIX_PATH}" STREQUAL "val1;val2") |
|
message(FATAL_ERROR "Setting the CMAKE_PREFIX_PATH failed '${CMAKE_PREFIX_PATH}'") |
|
endif()
|
|
|