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
NishiOwO ca703f24d5
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
measure line properly
2026-04-27 03:14:12 +09:00
doc document tiny flag; have it use flto on clang 2026-03-31 17:15:25 -07:00
examples add widgets to periodic table 2026-04-24 02:23:25 +09:00
external remove svn keywords 2025-12-05 07:43:04 +09:00
include/Mw introduce widget->user 2026-04-26 23:09:02 +09:00
pl tim cook is stepping down 2026-04-20 16:02:33 -05:00
resource add cursor 2026-04-24 01:43:50 +09:00
src measure line properly 2026-04-27 03:14:12 +09:00
tools fix memleaks under wayland 2026-04-23 14:02:33 -07:00
vms MwStringPrintIntoBuffer 2026-03-30 11:14:33 -07:00
.clang-format fix things 2026-04-17 21:26:41 +09:00
.clangd apple: move all event stuff into callback system, fix cmake support for apple, add gl/vk examples to cmake 2026-03-25 17:49:50 -07:00
.gitattributes some redesign 2025-11-02 20:42:06 +00:00
.gitignore cmake 2026-04-15 21:41:16 -07:00
BorMakefile add ui charset converter and stuff 2026-04-23 14:59:35 +09:00
CMakeLists.txt cmacos: working? 2026-04-16 22:58:16 -07:00
configure thing 2026-04-22 08:51:35 +09:00
Doxyfile remove svn keywords 2025-12-05 07:43:04 +09:00
Jenkinsfile fix 2026-04-22 13:45:55 +09:00
LICENSE update license 2026-01-02 00:24:59 +09:00
milsko.xml m 2026-04-19 18:05:58 -07:00
NTMakefile add ui charset converter and stuff 2026-04-23 14:59:35 +09:00
README.txt fix 2026-04-23 17:05:50 +09:00
WatMakefile add ui charset converter and stuff 2026-04-23 14:59:35 +09:00

Greetings - Welcome to the Milsko GUI Toolkit (Version pre-1.0) 

  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 MacOS environment with Cocoa (10.4 or above supported) 
  * A Unix-like environment with 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) Run `./configure'. 
   For help, run `./configure --help'. 

3) Run `make'. 

 -- Nishi  (nishi@nishi.boats)