Skip to content

Installation & Setup

mrfearless edited this page Aug 6, 2018 · 2 revisions

ModernUI Library

  • Download the latest version of the main ModernUI library and extract the files. The latest release can be found in the Release folder, or via the releases section of this Github repository or can be downloaded directly from here.
  • Copy the ModernUI.inc file to your masm32\include folder (or wherever your includes are located)
  • Copy the ModernUI.lib file to your masm32\lib folder (or wherever your libraries are located)
  • Add the following to your project:
include ModernUI.inc
includelib ModernUI.lib

ModernUI Controls

  • All ModernUI controls require the inclusion of the ModernUI Library as outlined in the previous section.
  • Download any ModernUI Controls you wish to use. Each ModernUI control is packaged separately, and can be found in the Release folder, or via the releases section of this Github repository.
  • Copy the ModernUI Control's include file (.inc) to your masm32\include folder (or wherever your includes are located)
  • Copy the ModernUI Control's library file (.lib) to your masm32\lib folder (or wherever your libraries are located)
  • Add the following to your project, for example if you are adding the ModernUI_Button control:
include ModernUI_Button.inc
includelib ModernUI_Button.lib
  • Repeat for all other ModernUI Controls that you wish to add to your project.