Windows Programmierung ed

Visual Studio 2013 ed

OpenGL ed

Dateien glext.h und wglext.h googlen und (von opengl.org) herunterladen. Dann unter C:\Program Files (x86)\Windows Kits\8.1\Include\um\gl ablegen.

Bibliotheken ed

am saubersten über Macros...

zuerst das Macro definieren:

dann die Bibliotheken einbinden:

gtk3 in Visual Studio (2017) ed

https://www.gtk.org/download/windows.phpmsys2 seems to fail...

via msys bash:

git clone https://github.com/Microsoft/vcpkg

via cmd.exe in same folder:

.\bootstrap-vcpkg.bat
vcpkg install gtk:x64-windows

now, vs automatically finds and links when using

#include 

compiled exe files even seem to run from within windows

msys2 ed

download from https://github.com/msys2/msys2/wiki/MSYS2-installation#iv-general-package-management

pacman -Syu
# restart
pacman -Syu
pacman -S mingw-w64-x86_64-gtk3
pacman -S mingw-w64-x86_64-toolchain base-devel

Categories: Computer, Programmieren