From: Bradley Sepos Date: Sat, 26 May 2018 22:47:35 +0000 (-0400) Subject: contrib: Explicitly set x265 build type to release. X-Git-Tag: 1.2.0~461 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ad22857c4d0b8d17328831eb74ebe11d6dbad9a;p=handbrake contrib: Explicitly set x265 build type to release. Build contains debug symbols without this. --- diff --git a/contrib/x265_10bit/module.defs b/contrib/x265_10bit/module.defs index eb21965aa..62090e2d7 100644 --- a/contrib/x265_10bit/module.defs +++ b/contrib/x265_10bit/module.defs @@ -21,6 +21,8 @@ X265_10.CONFIGURE.extra = -DENABLE_CLI=OFF -DHIGH_BIT_DEPTH=ON -DENABLE_LI ifneq (none,$(X265_10.GCC.g)) X265_10.CONFIGURE.extra += -DCMAKE_BUILD_TYPE=Debug +else + X265_10.CONFIGURE.extra += -DCMAKE_BUILD_TYPE=Release endif ifeq (1,$(BUILD.cross)) diff --git a/contrib/x265_12bit/module.defs b/contrib/x265_12bit/module.defs index e2e434016..02b451746 100644 --- a/contrib/x265_12bit/module.defs +++ b/contrib/x265_12bit/module.defs @@ -21,6 +21,8 @@ X265_12.CONFIGURE.extra = -DENABLE_CLI=OFF -DHIGH_BIT_DEPTH=ON -DENABLE_LI ifneq (none,$(X265_12.GCC.g)) X265_12.CONFIGURE.extra += -DCMAKE_BUILD_TYPE=Debug +else + X265_12.CONFIGURE.extra += -DCMAKE_BUILD_TYPE=Release endif ifeq (1,$(BUILD.cross)) diff --git a/contrib/x265_8bit/module.defs b/contrib/x265_8bit/module.defs index 284e3baa0..750d7ba69 100644 --- a/contrib/x265_8bit/module.defs +++ b/contrib/x265_8bit/module.defs @@ -18,6 +18,8 @@ X265_8.CONFIGURE.extra = -DENABLE_CLI=OFF -DHIGH_BIT_DEPTH=OFF -DENABLE_LI ifneq (none,$(X265_8.GCC.g)) X265_8.CONFIGURE.extra += -DCMAKE_BUILD_TYPE=Debug +else + X265_8.CONFIGURE.extra += -DCMAKE_BUILD_TYPE=Release endif ifeq (1,$(BUILD.cross))