Milsko GUI Toolkit
  • C 93%
  • Perl 3.8%
  • CMake 0.9%
  • Raku 0.9%
  • Shell 0.9%
  • Other 0.5%
Find a file
2025-12-15 07:21:45 +09:00
doc oops 2025-11-14 16:50:32 +00:00
examples method name consistency 2025-12-15 07:05:42 +09:00
external remove svn keywords 2025-12-05 07:43:04 +09:00
include/Mw method name consistency 2025-12-15 07:05:42 +09:00
pl Unfinished Wayland PR (#1) 2025-12-09 20:11:01 -06:00
resource update color db 2025-12-07 05:19:10 +09:00
src forgot 2025-12-15 07:10:23 +09:00
tools update color things 2025-12-15 06:48:40 +09:00
.clang-format remove svn keywords 2025-12-05 07:43:04 +09:00
.gitattributes some redesign 2025-11-02 20:42:06 +00:00
.gitignore update milsko.xml 2025-12-07 04:20:30 +09:00
BorMakefile remove svn keywords 2025-12-05 07:43:04 +09:00
CMakeLists.txt remove svn keywords 2025-12-05 07:43:04 +09:00
Doxyfile remove svn keywords 2025-12-05 07:43:04 +09:00
Koakumafile remove svn keywords 2025-12-05 07:43:04 +09:00
LICENSE update license 2025-10-03 19:53:10 +00:00
Makefile.pl care abt DESTDIR 2025-12-15 07:21:45 +09:00
milsko.xml update 2025-12-11 00:50:50 +09:00
NTMakefile remove svn keywords 2025-12-05 07:43:04 +09:00
README.txt replace 2025-11-08 02:14:29 +00:00
WatMakefile remove svn keywords 2025-12-05 07:43:04 +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 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)