summaryrefslogtreecommitdiffhomepage
path: root/gui
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-09-16 17:02:12 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-09-16 17:53:40 +0200
commitd2d63793c3ce266a5fe394ce2c098248469c06f5 (patch)
tree6428462751b0f3d80f20b43d48db12ccb5c97a0d /gui
parenta5167736460bac22010333cfe7530a5fa50d2c70 (diff)
cmake/gui: don't fixup subsystem now that mrproper does it
Diffstat (limited to 'gui')
-rw-r--r--gui/CMakeLists.txt12
1 files changed, 0 insertions, 12 deletions
diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt
index f33e2a3d..eca00125 100644
--- a/gui/CMakeLists.txt
+++ b/gui/CMakeLists.txt
@@ -31,15 +31,3 @@ if(LINUX)
target_link_libraries(opentrack procps)
endif()
-add_custom_target(fixup-qt-subsystem)
-
-if(MSVC)
- foreach(i Qt5Core Qt5Gui Qt5Network Qt5SerialPort Qt5Widgets platforms/qwindows)
- add_custom_command(TARGET fixup-qt-subsystem
- POST_BUILD
- COMMAND editbin -nologo -SUBSYSTEM:WINDOWS,5.01 -OSVERSION:5.1 "${i}.dll"
- WORKING_DIRECTORY "${CMAKE_INSTALL_PREFIX}")
- endforeach()
-endif()
-
-add_dependencies(opentrack fixup-qt-subsystem)