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.
18 lines
478 B
18 lines
478 B
file(STRINGS ${RunCMake_TEST_BINARY_DIR}/test.txt TEST_TXT ENCODING UTF-8)
|
|
|
|
list(GET TEST_TXT 0 PDB_PATH)
|
|
list(GET TEST_TXT 1 PDB_NAME)
|
|
list(GET TEST_TXT 2 PDB_DIR)
|
|
|
|
if(NOT PDB_PATH MATCHES "empty\\.pdb")
|
|
message(FATAL_ERROR "unexpected PDB_PATH [${PDB_PATH}]")
|
|
endif()
|
|
|
|
if(NOT PDB_NAME STREQUAL "empty.pdb")
|
|
message(FATAL_ERROR "unexpected PDB_NAME [${PDB_NAME}]")
|
|
endif()
|
|
|
|
if(PDB_DIR MATCHES "empty\\.pdb")
|
|
message(FATAL_ERROR "unexpected PDB_DIR [${PDB_DIR}]")
|
|
endif()
|