mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:57:45 +00:00
LibHTML: Add install.sh
This commit is contained in:
parent
fed96f455d
commit
a9ebd676e5
1 changed files with 11 additions and 0 deletions
11
Libraries/LibHTML/install.sh
Executable file
11
Libraries/LibHTML/install.sh
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
SERENITY_ROOT=../../
|
||||
|
||||
for dir in . Parser DOM CSS Layout; do
|
||||
mkdir -p $SERENITY_ROOT/Root/usr/include/LibHTML/$dir
|
||||
cp $dir/*.h $SERENITY_ROOT/Root/usr/include/LibHTML/$dir/
|
||||
done
|
||||
|
||||
cp libhtml.a $SERENITY_ROOT/Root/usr/lib/
|
Loading…
Add table
Add a link
Reference in a new issue