-
Notifications
You must be signed in to change notification settings - Fork 12
Installation & Setup
mrfearless edited this page Aug 10, 2018
·
1 revision
- 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.incfile to yourmasm32\includefolder (or wherever your includes are located) - Copy the
ModernUI.libfile to yourmasm32\libfolder (or wherever your libraries are located) - Add the following to your project:
include ModernUI.inc
includelib ModernUI.lib- 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 yourmasm32\includefolder (or wherever your includes are located) - Copy the ModernUI Control's library file (
.lib) to yourmasm32\libfolder (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.