-
Notifications
You must be signed in to change notification settings - Fork 757
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Makefile meson. * Fix tests. * Change to release. * Fix boostrap ci95. * Fix boostrap rmse. * Fix boostrap test. * Fix boostrap test. * Fix boostrap test; release. * Update based on 1480c1 suggestion.
- Loading branch information
Showing
3 changed files
with
63 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ __pycache__/ | |
build/ | ||
dist/ | ||
vmaf_output.xml | ||
compile_commands.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
all: | ||
cd third_party/libsvm && make lib | ||
|
||
mkdir -p libvmaf/build && cd libvmaf/build && \ | ||
meson .. --buildtype release && \ | ||
ninja -vC . | ||
meson setup libvmaf/build libvmaf --buildtype release && \ | ||
ninja -vC libvmaf/build | ||
|
||
clean: | ||
cd third_party/libsvm && make clean && cd - | ||
rm -rf libvmaf/build | ||
|
||
install: | ||
mkdir -p libvmaf/build && cd libvmaf/build && \ | ||
meson .. --buildtype release && \ | ||
ninja -vC . install | ||
meson setup libvmaf/build libvmaf --buildtype release && \ | ||
ninja -vC libvmaf/build install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters