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.
39 lines
1016 B
39 lines
1016 B
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
function(verify_project_top name)
|
|
unset(fileName CACHE)
|
|
find_file (fileName ${name}.top.gpj
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}/sub
|
|
${CMAKE_CURRENT_BINARY_DIR}/examples
|
|
)
|
|
|
|
if (fileName)
|
|
message("Found target ${name}: ${fileName}")
|
|
else()
|
|
message(SEND_ERROR "Could not find project ${name}: ${fileName}")
|
|
endif()
|
|
endfunction()
|
|
|
|
function(verify_exe_built name)
|
|
unset(fileName CACHE)
|
|
find_file (fileName ${name}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}/sub
|
|
)
|
|
|
|
if (fileName)
|
|
message("Found target ${name}: ${fileName}")
|
|
else()
|
|
message(SEND_ERROR "Could not find project ${name}: ${fileName}")
|
|
endif()
|
|
endfunction()
|
|
|
|
#test project top files were generated
|
|
verify_project_top(test)
|
|
verify_project_top(test2)
|
|
verify_project_top(test3)
|
|
verify_exe_built(exe1)
|
|
verify_exe_built(exe2)
|