blob: 196a19a78bcbbbf8dff0f2ad86f38e51c3960bba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
post_install() {
echo "-------------------------->"
echo "Location of the FTXUI installation:"
echo "- Headers : /usr/include/"
echo "- Libraries : /usr/lib/"
echo "- Cmake config: /usr/lib/cmake/ftxui/"
echo ""
echo "The libraries are:"
echo "- ftxui-libscreen.a"
echo "- ftxui-libdom.a"
echo "- ftxui-libcomponent.a"
echo "Don't forget to link against them."
echo ""
echo "They corresponds to the cmake targets:"
echo "- ftxui::screen"
echo "- ftxui::dom"
echo "- ftxui::component"
echo ""
echo "Using cmake, FetchContent and referring to a specific hash version of"
echo "FTXUI is recommended instead."
echo "<--------------------------"
}
post_upgrade() {
post_install
}
|