]> sigrok.org Git - pulseview.git/commitdiff
win32: Use -mwindows only for non-Debug targets.
authorCenkron <redacted>
Fri, 12 Jan 2018 18:43:27 +0000 (12:43 -0600)
committerUwe Hermann <redacted>
Sat, 13 Jan 2018 17:42:36 +0000 (18:42 +0100)
Direct cmake to apply the -mwindows linker switch based on a cmake
command line argument rather than by using a patch file. The command
line argument is -DCMAKE_BUILD_TYPE=xxxxx and applies the linker switch
only to WIN32 builds that are not Debug.

CMakeLists.txt

index d210f92ae3cd351b8b87e5254319b00025165b62..c8b4d6ad08740a1d9404db304e9d182bff80cf25 100644 (file)
@@ -448,7 +448,7 @@ endif()
 
 target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
 
-if(WIN32)
+if(WIN32 AND NOT ${CMAKE_BUILD_TYPE} STREQUAL "Debug")
        # Pass -mwindows so that no "DOS box" opens when PulseView is started.
        set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "-mwindows")
 endif()