dboun / MultiPatientImageProcessing

Bulk processing of medical images
1 stars 1 forks source link

Console opens on program start in Windows #20

Closed dboun closed 5 years ago

dboun commented 5 years ago

Two possible solutions:

  1. In Visual Studio set the subsystem to WINDOWS [link to where to find the option]

  2. In root CMakeLists.txt do something like [link to where I saw this]

if (WIN32)
    set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /SUBSYSTEM:WINDOWS")
endif()
dboun commented 5 years ago

This was fixed (I think)