0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Visual StudioでSDL_imageの設定をする

Last updated at Posted at 2024-08-31

SDLの設定についてはこちらの記事を参考にしました。SDL2_imageも基本的に同じ流れで設定すればよいです。

結論

SDLと同じように、

  1. 構成プロパティ > C/C++ > 追加のインクルードディレクトリ"C:\path\to\your\SDL2_image\SDL2_image-<your_version>\include"を追加

  2. 構成プロパティ > リンカー > 全般 > 追加のライブラリディレクトリ"C:\path\to\your\SDL2_image\SDL2_image-<your_version>\lib\x64"を追加

  3. 構成プロパティ > リンカー > 入力 > 追加の依存ファイルSDL2_image.libを追加

  4. ビルド後のイベントは以下のようなファイルを作成してcallすればよいです

SDL_dll_copy.bat
REM ビルド出力ディレクトリを引数として渡す
SET OutDir=%1

REM SDL2.dll をコピー
xcopy "C:\path\to\your\SDL2\SDL2-<your_version>\lib\x64\SDL2.dll" "%OutDir%" /y

REM SDL2_image.dll をコピー
xcopy "C:\path\to\your\SDL2_image\SDL2_image-<your_version>\lib\x64\SDL2_image.dll" "%OutDir%" /y

下図のようにビルド後のイベントを設定しましょう
スクリーンショット (1).png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?