call dll copy after project deps are setup

This commit is contained in:
Stephen Birarda 2015-02-17 17:17:30 -08:00
parent 5b563e3bc5
commit 68c19866c4
5 changed files with 11 additions and 5 deletions

View file

@ -18,3 +18,5 @@ if (UNIX)
endif (UNIX)
include_dependency_includes()
copy_dlls_beside_windows_executable()

View file

@ -34,6 +34,4 @@ macro(SETUP_HIFI_PROJECT)
foreach(QT_MODULE ${${TARGET_NAME}_DEPENDENCY_QT_MODULES})
target_link_libraries(${TARGET_NAME} Qt5::${QT_MODULE})
endforeach()
copy_dlls_beside_windows_executable()
endmacro()

View file

@ -53,3 +53,5 @@ include_directories(SYSTEM "${OPENSSL_INCLUDE_DIR}")
target_link_libraries(${TARGET_NAME} ${OPENSSL_LIBRARIES})
include_dependency_includes()
copy_dlls_beside_windows_executable()

View file

@ -88,3 +88,5 @@ if (ANDROID)
qt_create_apk()
endif (ANDROID)
copy_dlls_beside_windows_executable()

View file

@ -7,3 +7,5 @@ setup_hifi_project(Network)
link_hifi_libraries(embedded-webserver networking shared)
include_dependency_includes()
copy_dlls_beside_windows_executable()