diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-07-29 15:55:09 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-07-29 15:55:09 +0200 |
commit | eded65bbcabd8e2267ef3a1d7df467ab403b27e0 (patch) | |
tree | e8352bd3fdaa3ae582880945938d6eef21ffc480 /cmake/opentrack-platform.cmake | |
parent | 2112db0a98a2cd14b25828a5bc84bddc423712bf (diff) |
to rebasefeature/qt6
Diffstat (limited to 'cmake/opentrack-platform.cmake')
-rw-r--r-- | cmake/opentrack-platform.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/opentrack-platform.cmake b/cmake/opentrack-platform.cmake index 23f684f3..274a2189 100644 --- a/cmake/opentrack-platform.cmake +++ b/cmake/opentrack-platform.cmake @@ -146,8 +146,9 @@ if(MSVC) #C4266 - no override available for virtual member function from base type, function is hidden #C4928 - illegal copy-initialization, more than one user-defined conversion has been implicitly applied #C4200: nonstandard extension used: zero-sized array in struct/union + #C4828: The file contains a character starting at offset 0x1433 that is illegal in the current source character set (codepage 65001). - set(warns-disable 4530 4577 4789 4244 4702 4530 4244 4127 4458 4456 4251 4100 4702 4457 4200) + set(warns-disable 4530 4577 4789 4244 4702 4530 4244 4127 4458 4456 4251 4100 4702 4457 4200 4828) foreach(i ${warns-disable}) add_compile_options(-wd${i}) |