summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/find_program/Required.cmake
blob: a75aa53cf544cd6e24af6b983cdc6646e9a5af6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
find_program(PROG_A
  NAMES testA
  PATHS ${CMAKE_CURRENT_SOURCE_DIR}/A
  NO_DEFAULT_PATH
  REQUIRED
  )
message(STATUS "PROG_A='${PROG_A}'")

find_program(PROG_AandB
  NAMES testAandB
  REQUIRED
  )