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.
9 lines
277 B
9 lines
277 B
4 years ago
|
cmake_minimum_required(VERSION 3.17)
|
||
|
project(TestRubyFailExact LANGUAGES NONE)
|
||
|
|
||
|
# Should always fail since there is NO ruby 1.9.9 (goes from 1.9.3 to 2.0.0)
|
||
|
find_package(Ruby 1.9.9 EXACT REQUIRED)
|
||
|
if (NOT Ruby_FOUND)
|
||
|
message (FATAL_ERROR "Failed to find Ruby 1.9.9")
|
||
|
endif()
|