mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
fcft/tllist: remove git submodules
This commit is contained in:
parent
8837309c2e
commit
d86b0ddc21
5 changed files with 13 additions and 20 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
|||
/bld/
|
||||
/pkg/
|
||||
/src/
|
||||
/subprojects/
|
||||
|
|
|
|||
6
.gitmodules
vendored
6
.gitmodules
vendored
|
|
@ -1,6 +0,0 @@
|
|||
[submodule "subprojects/tllist"]
|
||||
path = subprojects/tllist
|
||||
url = https://codeberg.org/dnkl/tllist.git
|
||||
[submodule "subprojects/fcft"]
|
||||
path = subprojects/fcft
|
||||
url = https://codeberg.org/dnkl/fcft.git
|
||||
24
README.md
24
README.md
|
|
@ -229,15 +229,10 @@ libraries, or you can build them as _subprojects_ in foot.
|
|||
When building foot, they will first be searched for as system
|
||||
libraries. If **found**, foot will link dynamically against them.
|
||||
|
||||
If **not** found, they will be searched for as subprojects. In a foot
|
||||
git clone, they will be available as git _submodules_ and you can
|
||||
simply check them out with `git submodule update --init`. In this
|
||||
case, foot will link statically against them.
|
||||
|
||||
If you have downloaded a zip/tar file, you need to manually copy the
|
||||
correct version of the library source code into the `subprojects`
|
||||
folder. If you are unsure how to do this, it might be easier to
|
||||
install them as system libraries.
|
||||
If **not** found, they will be searched for as subprojects. In this
|
||||
case you need to create the `subprojects` directory and clone
|
||||
https://codeberg.org/dnkl/fcft.git and
|
||||
https://codeberg.org/dnkl/tllist.git (see [Other](#other) below).
|
||||
|
||||
|
||||
### Arch Linux
|
||||
|
|
@ -268,10 +263,15 @@ you intend to install a release build of foot, in which case you might
|
|||
be interested in the compiler flags used there.
|
||||
|
||||
If you have not installed [tllist](https://codeberg.org/dnkl/tllist)
|
||||
and [fcft](https://codeberg.org/dnkl/fcft) as system libraries, check
|
||||
them out as git submodules:
|
||||
and [fcft](https://codeberg.org/dnkl/fcft) as system libraries, clone
|
||||
them into the `subprojects` directory:
|
||||
|
||||
```sh
|
||||
git submodule update --init
|
||||
mkdir -p subprojects
|
||||
pushd subprojects
|
||||
git clone https://codeberg.org/dnkl/tllist.git
|
||||
git clone https://codeberg.org/dnkl/fcft.git
|
||||
popd
|
||||
```
|
||||
|
||||
To build, first, create a build directory, and switch to it:
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit a17a9788b55a5a47615522e9d7c338e2430cb401
|
||||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 5054d3dbbbd7d76e35f9d0d875e3c7f500fde52b
|
||||
Loading…
Add table
Add a link
Reference in a new issue