Milsko GUI Toolkit
  • C 93.8%
  • Objective-C 2.4%
  • C++ 1.3%
  • Perl 1%
  • CMake 0.7%
  • Other 0.8%
Find a file
NishiOwO 5834771c75 more methods
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@332 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-14 18:36:31 +00:00
doc more methods 2025-10-14 18:36:31 +00:00
examples work on listbox 2025-10-14 14:39:40 +00:00
external move files 2025-10-13 07:00:00 +00:00
include more methods 2025-10-14 18:36:31 +00:00
oosrc more methods 2025-10-14 18:36:31 +00:00
resource more methods 2025-10-14 18:36:31 +00:00
src more methods 2025-10-14 18:36:31 +00:00
tools fix sizehints bug 2025-10-14 04:57:50 +00:00
.clang-format mhm 2025-09-28 06:52:49 +00:00
.gitattributes move files 2025-10-13 07:00:00 +00:00
.gitignore vulkan support [but I finish adding the files] 2025-10-01 05:39:02 +00:00
BorMakefile work on listbox 2025-10-14 14:39:40 +00:00
compile_flags.txt vulkan support [but I finish adding the files] 2025-10-01 05:39:02 +00:00
GNUmakefile functional listbox 2025-10-14 16:41:38 +00:00
LICENSE update license 2025-10-03 19:53:10 +00:00
NTMakefile work on listbox 2025-10-14 14:39:40 +00:00
README.txt done 2025-10-13 15:30:52 +00:00
WatMakefile work on listbox 2025-10-14 14:39:40 +00:00

Greetings - Welcome to the Milsko GUI Toolkit (Version 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

            oosrc -    Contains the source for Milsko OO binding

            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 `make'. 


                               Makefile settings

          This section exists for people who chose D.

          TARGET        - Target environment, chosen by Makefile in
                          default settings.

          GCC           - Prefix for GCC toolchains. This does not
                          matter if you set CC/CXX manually.

          CC            - C compiler.

          CXX           - C++ compiler.

          DEBUG         - Debug build or not, 0 in default settings.

          VULKAN        - Build Vulkan widget or not.

          OPENGL        - Build OpenGL widget or not.

          USE_STB_IMAGE - Use stb_image or not.


                                Makefile targets

          This section exists for people who chose D.

          lib      - Builds Milsko library

          oolib    - Builds OO binding

          examples - Builds examples

          all      - Builds lib and examples

 -- Nishi  (nishi@nishi.boats)