mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 16:23:17 +02:00
fix for flipped conditional for dll fixup
This commit is contained in:
parent
fd8240669b
commit
66ab2ba9f9
1 changed files with 1 additions and 4 deletions
|
@ -18,7 +18,6 @@ macro(COPY_DLLS_BESIDE_WINDOWS_EXECUTABLE)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
${HIFI_CMAKE_DIR}/templates/FixupBundlePostBuild.cmake.in
|
${HIFI_CMAKE_DIR}/templates/FixupBundlePostBuild.cmake.in
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/FixupBundlePostBuild.cmake
|
${CMAKE_CURRENT_BINARY_DIR}/FixupBundlePostBuild.cmake
|
||||||
|
@ -34,8 +33,7 @@ macro(COPY_DLLS_BESIDE_WINDOWS_EXECUTABLE)
|
||||||
-P ${CMAKE_CURRENT_BINARY_DIR}/FixupBundlePostBuild.cmake
|
-P ${CMAKE_CURRENT_BINARY_DIR}/FixupBundlePostBuild.cmake
|
||||||
)
|
)
|
||||||
|
|
||||||
if (NOT USES_QT)
|
if (USES_QT)
|
||||||
|
|
||||||
find_program(WINDEPLOYQT_COMMAND windeployqt PATHS ${QT_DIR}/bin NO_DEFAULT_PATH)
|
find_program(WINDEPLOYQT_COMMAND windeployqt PATHS ${QT_DIR}/bin NO_DEFAULT_PATH)
|
||||||
|
|
||||||
# add a post-build command to call windeployqt to copy Qt plugins
|
# add a post-build command to call windeployqt to copy Qt plugins
|
||||||
|
@ -46,6 +44,5 @@ macro(COPY_DLLS_BESIDE_WINDOWS_EXECUTABLE)
|
||||||
)
|
)
|
||||||
|
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
endif ()
|
endif ()
|
||||||
endmacro()
|
endmacro()
|
Loading…
Reference in a new issue