Commit ee26be0c authored by Otavio Rodolfo Piske's avatar Otavio Rodolfo Piske

Fixed copying the DLLs to the test directory

Signed-off-by: 's avatarOtavio Rodolfo Piske <opiske@redhat.com>
parent 7a66543e
FILE(GLOB dlls ${CMAKE_BINARY_DIR}/src/*.dll) FILE(GLOB dlls ${CMAKE_BINARY_DIR}/../src/*.dll)
MESSAGE(STATUS "Files to copy: ${dlls}. From: ${CMAKE_BINARY_DIR}")
FOREACH(dll ${dlls}) FOREACH(dll ${dlls})
MESSAGE(STATUS, "Copying dll runtime file ${CMAKE_BINARY_DIR}/src/${dll} to runtime dir ${CMAKE_BINARY_DIR}/test") MESSAGE(STATUS "Copying dll runtime file ${dll} to runtime dir ${CMAKE_BINARY_DIR}")
FILE(COPY ${dlls} DESTINATION ${CMAKE_BINARY_DIR}/test) FILE(COPY ${dll} DESTINATION ${CMAKE_BINARY_DIR})
ENDFOREACH(dll) ENDFOREACH(dll)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment