windows 编译时,会出现这种 warning, 很难看,因此需要消除这种 warning.C4819
因为使用的是 CMakeLists 生成 VS 的工程,因此只需要在 CMakeLists 添加如下就可以解决;
消除 windows 编译 warning 4819
if(WIN32)
add_compile_options(/wd4819)
endif()
warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失