Skip to content

Instantly share code, notes, and snippets.

@UnaNancyOwen
Last active April 19, 2021 04:51
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UnaNancyOwen/aea4fb2fe64d94f00712 to your computer and use it in GitHub Desktop.
Save UnaNancyOwen/aea4fb2fe64d94f00712 to your computer and use it in GitHub Desktop.
Install GLEW for Windows

Install GLEW 1.11.0 for Windows

Download

  1. GLEW(glew-1.11.0-win32.zip)をダウンロードしてファイルを解凍する。
    http://glew.sourceforge.net/
    http://sourceforge.net/projects/glew/files/glew/1.11.0/

Install

  1. glew-1.11.0\bin\Release\{Win32|x64}\のファイルを以下のパスにコピーする。

    Platform Copy Path
    Win32 C:\Windows\SysWOW64\
    x64 C:\Windows\System32\
    • glew32.dll
    • glewinfo.exe
    • visualinfo.exe
  2. glew-1.11.0\include\GL\のファイルを以下のパスにコピーする。
    ("8.1"はWindows SDKのバージョン。)

    Copy Path
    C:\Program Files (x86)\Windows Kits\8.1\Include\um\gl\
    • glew.h
    • gglxew.h
    • wglew.h
  3. glew-1.11.0\lib\Release\{Win32|x64}\のファイルを以下のパスにコピーする。
    ("8.1"はWindows SDKのバージョン。)

    Platform Copy Path
    Win32 C:\Program Files (x86)\Windows Kits\8.1\Lib\winv6.3\um\x86\
    x64 C:\Program Files (x86)\Windows Kits\8.1\Lib\winv6.3\um\x64\
    • glew32.lib
    • glew32s.lib

Install GLEW 2.1.0 for Windows

Download

  1. GLEW(glew-2.1.0-win32.zip)をダウンロードしてファイルを解凍する。
    http://glew.sourceforge.net/
    http://sourceforge.net/projects/glew/files/glew/2.1.0/

Install

  1. glew-2.1.0\bin\Release\{Win32|x64}\のファイルを以下のパスにコピーする。

    Platform Copy Path
    Win32 C:\Windows\SysWOW64\
    x64 C:\Windows\System32\
    • glew32.dll
    • glewinfo.exe
    • visualinfo.exe
  2. glew-2.1.0\include\GL\のファイルを以下のパスにコピーする。
    ("10.0.18362.0"はWindows SDKのバージョン。)

    Copy Path
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um\gl\
    • glew.h
    • gglxew.h
    • wglew.h
  3. glew-2.1.0\lib\Release\{Win32|x64}\のファイルを以下のパスにコピーする。
    ("10.0.18362.0"はWindows SDKのバージョン。)

    Platform Copy Path
    Win32 C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\um\x86\
    x64 C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\um\x64\
    • glew32.lib
    • glew32s.lib
@PandaWhoCodes
Copy link

Thanks
really helped

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment