summaryrefslogtreecommitdiffhomepage
path: root/cmake
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-08-28 10:33:56 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-08-28 10:40:14 +0200
commit12d6ff4af6dc39a220d0452cebc62e4954ea11e6 (patch)
tree69e75a967fef53c7307ed3a89953d74623b10566 /cmake
parentf77461f8db5c3954cd61bd734b2c27a6698cb4c2 (diff)
fixup! cmake/msvc: add warning flag logic to toolchain def
Diffstat (limited to 'cmake')
-rw-r--r--cmake/opentrack-boilerplate.cmake3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmake/opentrack-boilerplate.cmake b/cmake/opentrack-boilerplate.cmake
index 40f7a763..0778307c 100644
--- a/cmake/opentrack-boilerplate.cmake
+++ b/cmake/opentrack-boilerplate.cmake
@@ -70,8 +70,7 @@ function(opentrack_fixup_subsystem n)
if (NOT type STREQUAL "STATIC_LIBRARY")
add_custom_command(TARGET "${n}"
POST_BUILD
- COMMAND editbin -nologo -SUBSYSTEM:${subsystem},5.01 -OSVERSION:5.1 \"${loc}\"
- COMMENT "[MSVC] Fixing up Windows XP support for target ${n}")
+ COMMAND editbin -nologo -SUBSYSTEM:${subsystem},5.01 -OSVERSION:5.1 \"${loc}\")
endif()
endif()
endfunction()