mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
28 lines
690 B
CMake
28 lines
690 B
CMake
cmake_minimum_required(VERSION 3.17)
|
|
project(TestRuby LANGUAGES C)
|
|
include(CTest)
|
|
|
|
cmake_policy(SET CMP0185 NEW)
|
|
|
|
find_package(Ruby 1.9.9 REQUIRED)
|
|
if (NOT Ruby_FOUND)
|
|
message (FATAL_ERROR "Failed to find Ruby >=1.9.9")
|
|
endif()
|
|
|
|
foreach(var_CMP0185
|
|
RUBY_EXECUTABLE
|
|
RUBY_INCLUDE_DIRS
|
|
RUBY_LIBRARY
|
|
RUBY_VERSION
|
|
)
|
|
if(DEFINED ${var_CMP0185})
|
|
message(FATAL_ERROR "Pre-CMP0185 result variable is set: ${var_CMP0185}")
|
|
endif()
|
|
endforeach()
|
|
|
|
add_executable(ruby_version ruby_version.c)
|
|
target_include_directories(ruby_version PRIVATE ${Ruby_INCLUDE_DIRS})
|
|
target_link_libraries(ruby_version PRIVATE ${Ruby_LIBRARIES})
|
|
|
|
add_test(NAME ruby_version COMMAND ruby_version)
|