summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/find_program/RelAndAbsPath.cmake
blob: 9a42c5e17b9a65af169ae159bfef10975a50c95c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# testNoSuchFile should only be found if the file absolute path is
# incorrectly prepended with the search path.

function(strip_windows_path_prefix p outvar)
    if(CMAKE_HOST_SYSTEM_NAME MATCHES "Windows")
        string(REGEX REPLACE "^.:" "" p "${p}")
    endif()
    set(${outvar} "${p}" PARENT_SCOPE)
endfunction()

strip_windows_path_prefix("${CMAKE_CURRENT_SOURCE_DIR}" srcdir)

file(MAKE_DIRECTORY "tmp${srcdir}")
configure_file(testCWD "tmp${srcdir}/testNoSuchFile" COPYONLY)

find_program(PROG_ABS
  NAMES "${srcdir}/testNoSuchFile"
  PATHS "${CMAKE_CURRENT_BINARY_DIR}/tmp"
  NO_DEFAULT_PATH
  )
message(STATUS "PROG_ABS='${PROG_ABS}'")

find_program(PROG_ABS_NPD
  NAMES "${srcdir}/testNoSuchFile"
  PATHS "${CMAKE_CURRENT_BINARY_DIR}/tmp"
  NAMES_PER_DIR
  NO_DEFAULT_PATH
  )
message(STATUS "PROG_ABS_NPD='${PROG_ABS_NPD}'")

# ./testCWD should not be found without '.' being in the path list.

configure_file(testCWD testCWD COPYONLY)

find_program(PROG_CWD
  NAMES testCWD
  NO_DEFAULT_PATH
  )
message(STATUS "PROG_CWD='${PROG_CWD}'")

find_program(PROG_CWD_NPD
  NAMES testCWD
  NAMES_PER_DIR
  NO_DEFAULT_PATH
  )
message(STATUS "PROG_CWD_NPD='${PROG_CWD_NPD}'")

# Confirm that adding '.' to path does locate ./testCWD.

find_program(PROG_CWD_DOT
  NAMES testCWD
  PATHS .
  NO_DEFAULT_PATH
  )
message(STATUS "PROG_CWD_DOT='${PROG_CWD_DOT}'")

find_program(PROG_CWD_DOT_NPD
  NAMES testCWD
  PATHS .
  NAMES_PER_DIR
  NO_DEFAULT_PATH
  )
message(STATUS "PROG_CWD_DOT_NPD='${PROG_CWD_DOT_NPD}'")