OpenFrameworksは,ウェブサイトからダウンロードできるオープンソースのC++ツールキットである.インストールでは,ZIPファイルのダウンロードと解凍,特定ディレクトリへの配置を行う.確認のため,examplesのビルドを行う.ビルドには,Visual Studio 2022のビルドツールを使用する.Visual Studio C++を用いた代替手順も示す.
OpenFrameworks には,次に示すさまざまなアドオンがある.
3DModelLoader, AssimpleModelLoader, Gui, Kinect, Network, OpenCv, Osc, Svg, ThreadImageLoader, VectorGraphics, XmlSettings
【インストールの判断】 Build Tools for Visual Studio は,開発ツールセットである. Visual Studio は統合開発環境であり,いくつかの種類があり,Build Tools for Visual Studioの機能を含むか連携して使用するものである.インストールは以下の基準で判断してください:
Visual Studio 2022 をインストールする際に,「C++ によるデスクトップ開発」を選択することで, Build Tools for Visual Studio 2022 の機能も一緒にインストールされる.
不明な点がある場合は,Visual Studio 全体をインストール を行う方が良い.
コマンドプロンプトを管理者として実行: 別ページ »で説明
次のコマンドを実行
次のコマンドは,Build Tools for Visual Studio 2022と VC2015 再配布可能パッケージをインストールするものである.
起動方法: スタートメニューの「Visual Studio Installer」を選ぶ.
コマンドプロンプトを管理者として実行: 別ページ »で説明
次のコマンドを実行
次のコマンドは,Visual Studio Community 2022と VC2015 再配布可能パッケージをインストールするものである.
起動方法: スタートメニューの「Visual Studio Installer」を選ぶ.
Gitは,分散型のバージョン管理システム. CMakeは,クロスプラットフォームのビルドシステム生成ツール.
【手順】
コマンドプロンプトを管理者として実行: 別ページ »で説明
次のコマンドを実行
次のコマンドは,GitとCMakeをインストールし,Gitにパスを通すものである.
次のコマンドでインストールされるGitは 「git for Windows」と呼ばれるものであり, Git,MinGW などから構成されている.
winget install --scope machine Git.Git powershell -command "$oldpath = [System.Environment]::GetEnvironmentVariable(\"Path\", \"Machine\"); $oldpath += \";c:\Program Files\Git\cmd\"; [System.Environment]::SetEnvironmentVariable(\"Path\", $oldpath, \"Machine\")" winget install --scope machine Kitware.CMake powershell -command "$oldpath = [System.Environment]::GetEnvironmentVariable(\"Path\", \"Machine\"); $oldpath += \";c:\Program Files\CMake\bin\"; [System.Environment]::SetEnvironmentVariable(\"Path\", $oldpath, \"Machine\")"
【関連する外部ページ】
【関連項目】 Git バージョン管理システム, Git の利用, CMake ビルドシステム生成ツール, CMake の使用方法, 7-Zip
C:\of_v0.11.0_vs2017_release
OpenFrameWorks の確認のため, examples にあるソースコードをビルドしてみる. Build Tools for Visual Studio 2022(ビルドツール for Visual Studio 2022)を使用する.
起動は,Windows のメニューで「Visual Studio 20..」の下の「x64 Native Tools コマンドプロンプト (x64 Native Tools Command Prompt)」を選ぶ.「x64」は,64ビット版の意味である.
「x64 Native Tools コマンドプロンプト (x64 Native Tools Command Prompt)」がないとき:
C++ ビルドツール (Build Tools) のインストールを行うことで, 「x64 Native Tools コマンドプロンプト (x64 Native Tools Command Prompt)」がインストールされる.その手順は,別ページ »で説明
cd C:\of_v0.11.0_vs2017_release cd examples\3d\3DModelLoaderExample devenv 3DModelLoaderExample.sln /upgrade
msbuild 3DModelLoaderExample.sln /p:Configuration=Release /p:Platform="x64" /target:ReBuild
上に書いた手順は,コマンドを使うもので,簡単,確実に実行できると考えているが,どうしても Visual Studio C++ を使いたいという場合には,同じことを次の手順で行うことができる.参考のため記載しておく.