跳转至

编译

Windows

git clone https://github.com/MeshInspector/MeshLib.git
cd MeshLib
git submodule update --init --recursive
cd ..

使用Vcpkg安装第三方库

# 安装vcpkg
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
git checkout 2022.11.14  #找到2022.11.14版本
.\bootstrap-vcpkg.bat    #下载vcpkg.exe
.\vcpkg integrate install #(with admin rights)
    #将vcpgk集成到全局,VS工程才能找到它们
cd ..

# 安装依赖包
cd vcpkg # or add vcpkg to PATH
../thirdparty/install.bat

【VS2019】依赖库安装之后,用VS2019打开MeshInspector/source/MeshLib.sln,编译和运行它。

【VS2022】与VS2019相同,只需将MeshLib/source/platform.props中的PlatformToolset,从v142改为v143

todo: 编译不过