mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 19:45:12 +00:00
LibHTML: Add install.sh
This commit is contained in:
parent
fed96f455d
commit
a9ebd676e5
Notes:
sideshowbarker
2024-07-19 11:57:16 +09:00
Author: https://github.com/bugaevc Commit: https://github.com/SerenityOS/serenity/commit/a9ebd676e54 Pull-request: https://github.com/SerenityOS/serenity/pull/609 Reviewed-by: https://github.com/awesomekling ✅
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
Reference in a new issue