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 f70c201ae5 tmp
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@788 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-11-23 11:55:54 +00:00
doc oops 2025-11-14 16:50:32 +00:00
examples fix 2025-11-22 10:29:19 +00:00
external fix stuff 2025-11-07 17:49:06 +00:00
include/Mw tmp 2025-11-23 11:55:54 +00:00
pl fix look, add actual event 2025-11-21 15:07:12 +00:00
resource 102x47 2025-11-14 13:17:17 +00:00
src fix 2025-11-23 11:38:12 +00:00
tools forgot to remove debug 2025-11-22 16:39:29 +00:00
.clang-format propset 2025-11-02 00:00:24 +00:00
.gitattributes some redesign 2025-11-02 20:42:06 +00:00
.gitignore merge pr #7 2025-11-01 03:37:10 +00:00
BorMakefile forgot to remove debug 2025-11-22 16:39:29 +00:00
CMakeLists.txt not needed 2025-11-18 08:22:37 +00:00
Doxyfile fix 2025-11-14 16:51:05 +00:00
Koakumafile fix 2025-11-14 06:41:38 +00:00
LICENSE update license 2025-10-03 19:53:10 +00:00
Makefile.pl add combobox demo 2025-11-15 19:27:56 +00:00
milsko.xml treeview works 2025-11-20 12:45:07 +00:00
NTMakefile forgot to remove debug 2025-11-22 16:39:29 +00:00
README.txt replace 2025-11-08 02:14:29 +00:00
WatMakefile forgot to remove debug 2025-11-22 16:39:29 +00: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 the Windows environment with GDI (so anything NT or 9x) or 
the 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: 
  * 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)