diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 54ce2f11d..1bf03a09c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -364,15 +364,9 @@ add_dependencies(subsurface_corelib version) # add platform specific actions if(CMAKE_SYSTEM_NAME STREQUAL "Windows") - add_custom_command( - OUTPUT ${CMAKE_BINARY_DIR}/qt.conf - COMMAND echo \"[Paths]\" > ${CMAKE_BINARY_DIR}/qt.conf \; echo \"Prefix=.\" >> ${CMAKE_BINARY_DIR}/qt.conf - ) - add_custom_target( - generate_qtconf - DEPENDS ${CMAKE_BINARY_DIR}/qt.conf - ) - add_dependencies(${SUBSURFACE_TARGET} generate_qtconf) + file(WRITE ${CMAKE_BINARY_DIR}/qt.conf "[Paths] +Prefix=. +") endif() # build an automated html exporter |