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.
|
find_program(PROG
|
|
NAMES testB testA
|
|
PATHS ${CMAKE_CURRENT_SOURCE_DIR}/A ${CMAKE_CURRENT_SOURCE_DIR}/B
|
|
NO_DEFAULT_PATH
|
|
)
|
|
message(STATUS "PROG='${PROG}'")
|
|
|
|
find_program(PROG_ABS
|
|
NAMES ${CMAKE_CURRENT_SOURCE_DIR}/A/testA
|
|
NO_DEFAULT_PATH
|
|
)
|
|
message(STATUS "PROG_ABS='${PROG_ABS}'")
|