generate pkgconfig file (don't commit yet i fucked it up)
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
This commit is contained in:
parent
4b6eae99dc
commit
c705d2b98c
375 changed files with 203503 additions and 203476 deletions
242
tools/readme.pl
242
tools/readme.pl
|
|
@ -1,121 +1,121 @@
|
|||
#!/usr/bin/env perl
|
||||
our $WIDTH = 80;
|
||||
|
||||
sub l {
|
||||
my $len = 0;
|
||||
my $last = 0;
|
||||
my @msg = split(/ /, $_[0]);
|
||||
foreach my $m (@msg) {
|
||||
$len += 1 + length($m);
|
||||
$last = 0;
|
||||
if ($len > $WIDTH) {
|
||||
print(OUT "\n");
|
||||
$len = 0;
|
||||
$last = 1;
|
||||
}
|
||||
print(OUT "$m ");
|
||||
}
|
||||
if (!$last) {
|
||||
print(OUT "\n");
|
||||
}
|
||||
}
|
||||
|
||||
sub c {
|
||||
my ($msg) = @_;
|
||||
my $len = length($msg);
|
||||
if ($_[1]) {
|
||||
$len = $_[1];
|
||||
}
|
||||
print(OUT (" " x (($WIDTH - $len) / 2)) . "$msg\n");
|
||||
}
|
||||
|
||||
sub h {
|
||||
my ($msg) = @_;
|
||||
print(OUT "\n");
|
||||
print(OUT "$msg\n");
|
||||
print(OUT ("-" x length($msg)) . "\n");
|
||||
print(OUT "\n");
|
||||
}
|
||||
|
||||
open(IN, "<", "include/Mw/Version.h");
|
||||
my @lines = <IN>;
|
||||
close(IN);
|
||||
my @match = grep(/MwVERSION/, @lines);
|
||||
|
||||
my $ver = $match[0];
|
||||
$ver =~ /\"([^"]+)\"/;
|
||||
$ver = $1;
|
||||
|
||||
open(OUT, ">", "README.txt");
|
||||
|
||||
l("");
|
||||
l("Greetings - Welcome to the Milsko GUI Toolkit (Version " . $ver . ")");
|
||||
l("");
|
||||
l(
|
||||
" This document contains a brief summary of the contents of this source distributions and building instructions for Milsko GUI Toolkit."
|
||||
);
|
||||
|
||||
l("");
|
||||
c("Requirements");
|
||||
l("");
|
||||
l(" Milsko requires either");
|
||||
l(" * A Windows environment with GDI (so anything NT or 9x)");
|
||||
|
||||
#l(" * A MacOS environment with Cocoa (10.4 or above supported)");
|
||||
l(" * A Unix-like environment with Wayland and/or X11 for runtime.");
|
||||
l("");
|
||||
l(" To build Milsko for Windows, you must have one of following compilers:");
|
||||
l(" * Visual C++ 6.0 or newer");
|
||||
l(" * Borland C++ 5.5 or newer");
|
||||
l(" * Open Watcom 2.0 or newer");
|
||||
l(" * MinGW-w64");
|
||||
l("");
|
||||
l(" and for Unix-like and MacOS:");
|
||||
l(" * GNU C Compiler");
|
||||
l(" * Clang");
|
||||
l("");
|
||||
|
||||
l("");
|
||||
c("Contents");
|
||||
l("");
|
||||
c(" At the top level of this hierarchy there are seven directories:", 60);
|
||||
l("");
|
||||
c(" src - Contains the source for Milsko library", 60);
|
||||
l("");
|
||||
c(" include - Contains the headers for Milsko", 60);
|
||||
l("");
|
||||
c(" doc - Contains the documentation for Milsko", 60);
|
||||
l("");
|
||||
c(" external - Contains the external dependency that Milsko uses", 60);
|
||||
l("");
|
||||
c(" resource - Contains the resources used by maintainers", 60);
|
||||
l("");
|
||||
c(" tools - Contains the tools used by maintainers", 60);
|
||||
l("");
|
||||
|
||||
l("");
|
||||
c("Building Milsko");
|
||||
l("");
|
||||
l(" Building Milsko depends on the platform you use, and the compiler you use."
|
||||
);
|
||||
h("A. Visual C++");
|
||||
l("1) Run `nmake -f NTMakefile'.");
|
||||
h("B. Borland C++");
|
||||
l("1) Run `make -f BorMakefile'.");
|
||||
h("C. Open Watcom");
|
||||
l("1) Run `wmake -f WatMakefile'.");
|
||||
h("D. MinGW-w64/GCC/Clang");
|
||||
l("1) Determine if you need Vulkan and/or OpenGL.");
|
||||
l("");
|
||||
l("2) Either:");
|
||||
l(" a.) Run `./configure'. For help, run `./configure --help'.");
|
||||
l(
|
||||
" b.) Use CMake; i.e. `cmake -B build`. (if contributing, name the build folder build as that's what's included in the .gitignore)"
|
||||
);
|
||||
l("");
|
||||
l("3) Run `make'.");
|
||||
l("");
|
||||
|
||||
l(" -- Nishi (nishi\@nishi.boats)");
|
||||
|
||||
close(OUT);
|
||||
#!/usr/bin/env perl
|
||||
our $WIDTH = 80;
|
||||
|
||||
sub l {
|
||||
my $len = 0;
|
||||
my $last = 0;
|
||||
my @msg = split(/ /, $_[0]);
|
||||
foreach my $m (@msg) {
|
||||
$len += 1 + length($m);
|
||||
$last = 0;
|
||||
if ($len > $WIDTH) {
|
||||
print(OUT "\n");
|
||||
$len = 0;
|
||||
$last = 1;
|
||||
}
|
||||
print(OUT "$m ");
|
||||
}
|
||||
if (!$last) {
|
||||
print(OUT "\n");
|
||||
}
|
||||
}
|
||||
|
||||
sub c {
|
||||
my ($msg) = @_;
|
||||
my $len = length($msg);
|
||||
if ($_[1]) {
|
||||
$len = $_[1];
|
||||
}
|
||||
print(OUT (" " x (($WIDTH - $len) / 2)) . "$msg\n");
|
||||
}
|
||||
|
||||
sub h {
|
||||
my ($msg) = @_;
|
||||
print(OUT "\n");
|
||||
print(OUT "$msg\n");
|
||||
print(OUT ("-" x length($msg)) . "\n");
|
||||
print(OUT "\n");
|
||||
}
|
||||
|
||||
open(IN, "<", "include/Mw/Version.h");
|
||||
my @lines = <IN>;
|
||||
close(IN);
|
||||
my @match = grep(/MwVERSION/, @lines);
|
||||
|
||||
my $ver = $match[0];
|
||||
$ver =~ /\"([^"]+)\"/;
|
||||
$ver = $1;
|
||||
|
||||
open(OUT, ">", "README.txt");
|
||||
|
||||
l("");
|
||||
l("Greetings - Welcome to the Milsko GUI Toolkit (Version " . $ver . ")");
|
||||
l("");
|
||||
l(
|
||||
" This document contains a brief summary of the contents of this source distributions and building instructions for Milsko GUI Toolkit."
|
||||
);
|
||||
|
||||
l("");
|
||||
c("Requirements");
|
||||
l("");
|
||||
l(" Milsko requires either");
|
||||
l(" * A Windows environment with GDI (so anything NT or 9x)");
|
||||
|
||||
#l(" * A MacOS environment with Cocoa (10.4 or above supported)");
|
||||
l(" * A Unix-like environment with Wayland and/or X11 for runtime.");
|
||||
l("");
|
||||
l(" To build Milsko for Windows, you must have one of following compilers:");
|
||||
l(" * Visual C++ 6.0 or newer");
|
||||
l(" * Borland C++ 5.5 or newer");
|
||||
l(" * Open Watcom 2.0 or newer");
|
||||
l(" * MinGW-w64");
|
||||
l("");
|
||||
l(" and for Unix-like and MacOS:");
|
||||
l(" * GNU C Compiler");
|
||||
l(" * Clang");
|
||||
l("");
|
||||
|
||||
l("");
|
||||
c("Contents");
|
||||
l("");
|
||||
c(" At the top level of this hierarchy there are seven directories:", 60);
|
||||
l("");
|
||||
c(" src - Contains the source for Milsko library", 60);
|
||||
l("");
|
||||
c(" include - Contains the headers for Milsko", 60);
|
||||
l("");
|
||||
c(" doc - Contains the documentation for Milsko", 60);
|
||||
l("");
|
||||
c(" external - Contains the external dependency that Milsko uses", 60);
|
||||
l("");
|
||||
c(" resource - Contains the resources used by maintainers", 60);
|
||||
l("");
|
||||
c(" tools - Contains the tools used by maintainers", 60);
|
||||
l("");
|
||||
|
||||
l("");
|
||||
c("Building Milsko");
|
||||
l("");
|
||||
l(" Building Milsko depends on the platform you use, and the compiler you use."
|
||||
);
|
||||
h("A. Visual C++");
|
||||
l("1) Run `nmake -f NTMakefile'.");
|
||||
h("B. Borland C++");
|
||||
l("1) Run `make -f BorMakefile'.");
|
||||
h("C. Open Watcom");
|
||||
l("1) Run `wmake -f WatMakefile'.");
|
||||
h("D. MinGW-w64/GCC/Clang");
|
||||
l("1) Determine if you need Vulkan and/or OpenGL.");
|
||||
l("");
|
||||
l("2) Either:");
|
||||
l(" a.) Run `./configure'. For help, run `./configure --help'.");
|
||||
l(
|
||||
" b.) Use CMake; i.e. `cmake -B build`. (if contributing, name the build folder build as that's what's included in the .gitignore)"
|
||||
);
|
||||
l("");
|
||||
l("3) Run `make'.");
|
||||
l("");
|
||||
|
||||
l(" -- Nishi (nishi\@nishi.boats)");
|
||||
|
||||
close(OUT);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue