41 lines
975 B
Org Mode
41 lines
975 B
Org Mode
#+OPTIONS: toc:nil
|
|
#+OPTIONS: num:2
|
|
**This is not a working chess program !!**
|
|
|
|
/I am only experimenting some chess programming concepts./
|
|
|
|
** License
|
|
~SPDX-License-Identifier: GPL-3.0-or-later <https://spdx.org/licenses/GPL-3.0-or-later.html>~~
|
|
|
|
This work is Copyright (C) 2021-2024 Bruno Raoult ("br"), and licensed under
|
|
the GNU General Public License v3.0 or later.
|
|
|
|
Some rights reserved. See COPYING.
|
|
|
|
** Installation (don't do it until version 0.9)
|
|
*** dependencire
|
|
- GCC 10 or newer
|
|
- libreadline
|
|
*** clone repository
|
|
*user...**
|
|
#+BEGIN_EXAMPLE
|
|
$ git clone https://github.com/braoult/brchess.git
|
|
or
|
|
$ git clone https://git.raoult.com/bruno/brchess.git
|
|
#+END_EXAMPLE
|
|
|
|
*OR ...developer*
|
|
#+BEGIN_EXAMPLE
|
|
$ git clone git@git.raoult.com:bruno/brchess.git
|
|
$ cd brchess
|
|
$ git remote add github git@github.com:braoult/brchess.git
|
|
$ git fetch --all
|
|
#+END_EXAMPLE
|
|
|
|
*** add "brlib" submodule
|
|
#+BEGIN_EXAMPLE
|
|
$ cd brchess
|
|
$ git submodule init
|
|
$ git submodule update
|
|
#+END_EXAMPLE
|