Physically Based Rendering のインストール(GitHub の mmp/pbrt-v4 を使用,Windows 上)
前準備(Git, cmake, マイクロソフト C++ ビルドツール等のインストール)
Visual Studio 2022 Build Toolsとランタイムのインストール
管理者権限でコマンドプロンプトを起動(手順:Windowsキーまたはスタートメニュー > cmd と入力 > 右クリック > 「管理者として実行」)し、以下を実行する。管理者権限は、wingetの--scope machineオプションでシステム全体にソフトウェアをインストールするために必要である。
REM Visual Studio 2022 Build Toolsとランタイムのインストール
winget install --scope machine Microsoft.VisualStudio.2022.BuildTools Microsoft.VCRedist.2015+.x64
set VS_INSTALLER="C:\Program Files (x86)\Microsoft Visual Studio\Installer\setup.exe"
set VS_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools"
REM C++開発ワークロードのインストール
%VS_INSTALLER% modify --installPath %VS_PATH% ^
--add Microsoft.VisualStudio.Workload.VCTools ^
--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 ^
--add Microsoft.VisualStudio.Component.Windows11SDK.22621 ^
--includeRecommended --quiet --norestart
Git のインストール
Git のページ https://git-scm.com/ からダウンロードしてインストール:
- Windows での Git のインストール: 別ページ »で説明
- Ubuntu では,端末で,次のコマンドを実行して,Git をインストールする.
# パッケージリストの情報を更新 sudo apt update sudo apt -y install git
CMake のインストール
CMake の公式ダウンロードページ: https://cmake.org/download/
- Windows での cmake のインストール: 別ページ »で説明
- Ubuntu では,端末で,次のコマンドを実行して,cmake をインストールする.
# パッケージリストの情報を更新 sudo apt update sudo apt -y install cmake cmake-curses-gui
github の mmp/pbrt-v4 のインストール
URL: https://github.com/mmp/pbrt-v4
Windows での手順を下に示す.Ubuntu でも同様の手順である.
-
Windows で,管理者権限でコマンドプロンプトを起動(手順:Windowsキーまたはスタートメニュー >
cmd
と入力 > 右クリック > 「管理者として実行」)。 - github の mmp/pbrt-v4 のダウンロード
glog,openexr,ptex,zlib が合わせてダウンロードされる.
cd /d c:%HOMEPATH% rmdir /s /q pbrt-v4 git clone --recursive https://github.com/mmp/pbrt-v4
(以下省略) - cmake の実行
cmake のオプションの 「Visual Studio 17 2022」の部分は, 使用する Visual Studio のバージョンに合わせること. Visual Studio 2022 のときは,「Visual Studio 17 2022」. Visual Studio 2019 のときは,「Visual Studio 16 2019」.
cd /d c:%HOMEPATH% cd pbrt-v4 rmdir /s /q build mkdir build cd build cmake .. -G "Visual Studio 17 2022" -A x64 -T host=x64
(以下省略) - cmake の結果の確認
エラーメッセージが出ていないことを確認する.
- ビルド操作,インストール操作
cmake --build . --config RELEASE --target INSTALL -- /m:4
- 結果の確認
エラーメッセージが出ていないことを確認する.
- Windows の システム環境変数 PATH に,c:\Program Files\PBRT-V4\bin を追加することにより,パスを通す.
Windows で,管理者権限でコマンドプロンプトを起動(手順:Windowsキーまたはスタートメニュー >
cmd
と入力 > 右クリック > 「管理者として実行」)。次のコマンドを実行する.
powershell -command "$oldpath = [System.Environment]::GetEnvironmentVariable(\"Path\", \"Machine\"); $oldpath += \";c:\Program Files\PBRT-V4\bin\"; [System.Environment]::SetEnvironmentVariable(\"Path\", $oldpath, \"Machine\")"