https://github.com/Kitware/CMake
Raw File
Tip revision: 44cc305ac12d58fe476f815b89f42288455e44a9 authored by Brad King on 25 October 2018, 11:52:24 UTC
CMake 3.13.0-rc2
Tip revision: 44cc305
check-part4.cmake
include(${CMAKE_CURRENT_LIST_DIR}/check-common.cmake)

string(REPLACE ${path_prefix} "" test_shell_path ${test_shell_path})

if(WIN32)
  if(CMAKE_GENERATOR STREQUAL "MSYS Makefiles")
    check(test_shell_path [[/c/shell/path]])
  elseif(CMAKE_GENERATOR STREQUAL "Unix Makefiles")
    check(test_shell_path [[c:/shell/path]])
  else()
    check(test_shell_path [[c:\shell\path]])
  endif()
else()
  check(test_shell_path [[/shell/path]])
endif()

check(if_1 "a")
check(if_2 "b")
check(if_3 "b")
check(if_4 "a")
back to top