我将repo下载并下载,然后在Visual Studio 2017社区中打开它,执行如下操作:
1:right-click the MakeLists.txt and click the Rebuild All. (x64 Debug)
2:Then, i found the build directory at here:C:\Users\SHIZU-NOTEBOOK\AppData\Local\CMakeBuild\233159a3-9dca-9735-91fc-be7911e3ef6d\build\x64-Debug\Debug
我找不到类似* \ bin的目录,也在cmd" pbrt"选择工作。
构建错误了吗?解决方案!
此致!
答案 0 :(得分:0)
使用cmake-gui或cmake命令行工具生成Visual Studio解决方案文件,然后构建解决方案。
如果选择命令行,请执行以下步骤:
生成解决方案文件
mkdir build && cd build
cmake .. -G "Visual Studio 15 Win64"
现在,使用Visual Studio 2017打开PBRT-V3.sln
PS:从pbrt-v3项目的自述文件中,您需要运行git submodule update --init --recursive
来获取依赖项。