diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-03 20:11:03 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-03 20:11:03 +0100 |
commit | e5383a123d9e8e4bfaa0775a0ca9000a74914528 (patch) | |
tree | e205b630e7c7e4c9e2f0044499fcacb719be15d6 /cmake/opentrack-platform.cmake | |
parent | a9553d861b242b1ccea64485d43bdc3e44b38130 (diff) |
cmake: fix spurious linker warning
Issue: #883
Reported by: @Slion
Diffstat (limited to 'cmake/opentrack-platform.cmake')
-rw-r--r-- | cmake/opentrack-platform.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/opentrack-platform.cmake b/cmake/opentrack-platform.cmake index 63e64e4a..a76da8b5 100644 --- a/cmake/opentrack-platform.cmake +++ b/cmake/opentrack-platform.cmake @@ -140,6 +140,7 @@ if(MSVC) add_link_options(-DYNAMICBASE -NXCOMPAT) add_link_options(-WX) add_link_options(-ignore:4020) + add_link_options(-ignore:4217) # debug build endif() if(APPLE) |