Milsko GUI Toolkit
  • C 93.8%
  • Objective-C 2.4%
  • C++ 1.3%
  • Perl 1%
  • CMake 0.7%
  • Other 0.8%
Find a file
2026-03-27 16:41:32 +09:00
doc oops 2025-11-14 16:50:32 +00:00
examples wip 2026-03-27 16:31:28 +09:00
external remove svn keywords 2025-12-05 07:43:04 +09:00
include/Mw optimize box later 2026-03-27 16:41:32 +09:00
pl wip 2026-03-27 15:25:02 +09:00
resource update color db 2025-12-07 05:19:10 +09:00
src optimize box later 2026-03-27 16:41:32 +09:00
tools fix cursor thing for x11/gdi, also format 2026-03-24 04:26:36 +09:00
vms i will work on vms port at some point 2025-12-21 20:25:57 +09:00
.clang-format format objective c files 2026-01-15 05:31:04 +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 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
BorMakefile i fixed the makefiles but forgot to run the script 2026-03-04 13:22:00 -07:00
CMakeLists.txt 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
configure 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
Doxyfile remove svn keywords 2025-12-05 07:43:04 +09:00
Jenkinsfile i wonder if this works 2026-03-14 05:21:53 +09:00
LICENSE update license 2026-01-02 00:24:59 +09:00
milsko.xml add MwNdarkTheme 2026-03-27 11:25:53 +09:00
NTMakefile i fixed the makefiles but forgot to run the script 2026-03-04 13:22:00 -07:00
README.txt Oops the readme is generated 2026-03-04 16:52:19 -07:00
WatMakefile i fixed the makefiles but forgot to run the script 2026-03-04 13:22:00 -07: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)