diff options
author | John Stebbins <[email protected]> | 2017-11-06 07:57:01 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2017-11-06 07:57:01 -0800 |
commit | ef5e24d863a34ffff73ed9293635cdbfc1a98fe9 (patch) | |
tree | b46da5c2d34838e9c63abc01d8d0abaceb376514 /make/include/base.defs | |
parent | 5eb3abb1d962e0dddb05638497f43f6e7ef02e18 (diff) |
x265: add support for 8/10/12 bit encoding in single static lib (#975)
Builds x265 three times, once for each bit depth. Then merges the static libs into one library that HandBrake can statically link against.
Diffstat (limited to 'make/include/base.defs')
-rw-r--r-- | make/include/base.defs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/make/include/base.defs b/make/include/base.defs index 4e6da0e64..6e7999667 100644 --- a/make/include/base.defs +++ b/make/include/base.defs @@ -12,6 +12,13 @@ define import.MODULE.defs ## module name (lowercase) $(1).name = $(2) + ## module build directory + ifeq (,$(4)) + $(1).dir = $(2) + else + $(1).dir = $(4) + endif + ## list of prerequisite modules (uppercase) $(1).prerequisites = $(3) |