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
IoI_xD efa43456c1
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
significant macos progress, now compiles/runs on monetery
2026-03-03 23:24:28 -07:00
doc oops 2025-11-14 16:50:32 +00:00
examples MwSetDarkTheme instead of MwToggleDarkTheme 2026-01-27 18:03:16 +09:00
external remove svn keywords 2025-12-05 07:43:04 +09:00
include/Mw significant macos progress, now compiles/runs on monetery 2026-03-03 23:24:28 -07:00
pl add RPN calculator demo 2026-01-27 17:02:40 +09:00
resource update color db 2025-12-07 05:19:10 +09:00
src significant macos progress, now compiles/runs on monetery 2026-03-03 23:24:28 -07:00
tools text shadow 2025-12-21 23:02:02 +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
.gitattributes some redesign 2025-11-02 20:42:06 +00:00
.gitignore cocoa: fix syntax errors. Also allow cmake to compile it (untested) 2026-01-12 15:13:59 -07:00
BorMakefile oops 2025-12-15 14:13:55 +09:00
CMakeLists.txt cocoa: fix syntax errors. Also allow cmake to compile it (untested) 2026-01-12 15:13:59 -07:00
Doxyfile remove svn keywords 2025-12-05 07:43:04 +09:00
Jenkinsfile msvc 2026-02-04 00:30:22 +09:00
LICENSE update license 2026-01-02 00:24:59 +09:00
Makefile.pl format objective c files 2026-01-15 05:31:04 +09:00
milsko.xml MwSetDarkTheme instead of MwToggleDarkTheme 2026-01-27 18:03:16 +09:00
NTMakefile oops 2025-12-15 14:13:55 +09:00
README.txt significant macos progress, now compiles/runs on monetery 2026-03-03 23:24:28 -07:00
WatMakefile oops 2025-12-15 14:13:55 +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 Mac OS environment with Cocoa (10.4 is the minimum tested)
  * 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/Mac OS:
  * 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 `./Makefile.pl'.
   For help, run `./Makefile.pl --help'.

3) Run `make'.

 -- Nishi  (nishi@nishi.boats)