Milsko GUI Toolkit https://milsko.nishi.boats
  • C 93.8%
  • Objective-C 2.3%
  • C++ 1.3%
  • Perl 1%
  • CMake 0.8%
  • Other 0.8%
Find a file
IoIxD 4ce9ee6730
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
properly use QueryInterface to return on platforms w/o DirectWrite
2026-07-17 19:30:07 -07:00
doc use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
examples cross compiling fixes 2026-07-17 17:44:43 -07:00
external use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
include/Mw ffinish 2026-07-17 17:36:16 -07:00
pl ffinish 2026-07-17 17:36:16 -07:00
resource use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
src properly use QueryInterface to return on platforms w/o DirectWrite 2026-07-17 19:30:07 -07:00
tools use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
.clang-format use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
.clangd use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
.gitattributes use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
.gitignore use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
CMakeLists.txt cross compiling fixes 2026-07-17 17:44:43 -07:00
configure fix perl cross compiling 2026-07-17 17:53:53 -07:00
Doxyfile use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
Jenkinsfile use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
LICENSE use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
milsko.xml use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
NTMakefile use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
README.txt use unix2dos to undo what windows did 2026-07-16 15:44:09 -07:00
WatMakefile watcom cannot even compile directwrite.c so nvm 2026-07-17 00:56:52 -07:00

Greetings - Welcome to the Milsko GUI Toolkit (Version 1.3) 

  This document contains a brief summary of the contents of this source 
distributions and building instructions for Milsko GUI Toolkit. 

                                  Requirements

  Milsko requires either 
  * A Windows environment with GDI (so anything NT or 9x) 
  * A Unix-like environment with Wayland and/or X11 for runtime. 

  To build Milsko for Windows, you must have one of following compilers: 
  * Visual C++ 6.0 or newer 
  * Borland C++ 5.5 or newer 
  * Open Watcom 2.0 or newer 
  * MinGW-w64 

  and for Unix-like and MacOS: 
  * GNU C Compiler 
  * Clang 


                                    Contents

            At the top level of this hierarchy there are seven directories:

            src -      Contains the source for Milsko library

            include -  Contains the headers for Milsko

            doc -      Contains the documentation for Milsko

            external - Contains the external dependency that Milsko uses

            resource - Contains the resources used by maintainers

            tools -    Contains the tools used by maintainers


                                Building Milsko

  Building Milsko depends on the platform you use, and the compiler you use. 

A. Visual C++
-------------

1) Run `nmake -f NTMakefile'. 

B. Borland C++
--------------

1) Run `make -f BorMakefile'. 

C. Open Watcom
--------------

1) Run `wmake -f WatMakefile'. 

D. MinGW-w64/GCC/Clang
----------------------

1) Determine if you need Vulkan and/or OpenGL. 

2) Either: 
   a.) Run `./configure'. For help, run `./configure --help'. 
   b.) Use CMake; i.e. `cmake -B build`. (if contributing, name the build 
folder build as that's what's included in the .gitignore) 

3) Run `make'. 

 -- Nishi  (nishi@nishi.boats)