Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
/ minGL Public archive

Simple C++ graphics library for Windows.

Notifications You must be signed in to change notification settings

romanstrazanec-uni/minGL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MinGL

Simple minimalistic C++ graphics library for Windows.

Compile with:

g++ source_file.cpp -lminGL -lgdiplus

Examples

Creating "Hello world" window

#include <mingl>

int main() {
    Window window("Hello world", 100, 100, 300, 300);

    window.addLabel("Hello world", 10, 10, 100, 30);

    return window.show();
}

Compiler versions

  • MSVC 19.16.27035.0
  • GNU 9.3.0