[x265] [PATCH] cmake: remove empty file set

deepthi at multicorewareinc.com deepthi at multicorewareinc.com
Mon Jul 13 08:18:18 CEST 2015


# HG changeset patch
# User Deepthi Nandakumar <deepthi at multicorewareinc.com>
# Date 1436765725 -19800
#      Mon Jul 13 11:05:25 2015 +0530
# Node ID 11911e0e5949d9431ba07101654b8f148953aea0
# Parent  448a0901a74c26e6ee3c26606ee4b02ead6df67c
cmake: remove empty file set

diff -r 448a0901a74c -r 11911e0e5949 source/CMakeLists.txt
--- a/source/CMakeLists.txt	Thu Jul 09 17:51:09 2015 +0530
+++ b/source/CMakeLists.txt	Mon Jul 13 11:05:25 2015 +0530
@@ -513,7 +513,6 @@
                           output/raw.cpp)               # muxers
     source_group(input FILES ${InputFiles})
     source_group(output FILES ${OutputFiles})
-    source_group(filters FILES ${FilterFiles})
 
     check_include_files(getopt.h HAVE_GETOPT_H)
     if(NOT HAVE_GETOPT_H)
@@ -529,11 +528,11 @@
 
     if(XCODE)
         # Xcode seems unable to link the CLI with libs, so link as one targget
-        add_executable(cli ../COPYING ${InputFiles} ${OutputFiles} ${FilterFiles} ${GETOPT}
+        add_executable(cli ../COPYING ${InputFiles} ${OutputFiles} ${GETOPT}
                        x265.cpp x265.h x265cli.h x265-extras.h x265-extras.cpp
                        $<TARGET_OBJECTS:encoder> $<TARGET_OBJECTS:common> ${YASM_OBJS} ${YASM_SRCS})
     else()
-        add_executable(cli ../COPYING ${InputFiles} ${OutputFiles} ${FilterFiles} ${GETOPT} ${X265_RC_FILE}
+        add_executable(cli ../COPYING ${InputFiles} ${OutputFiles} ${GETOPT} ${X265_RC_FILE}
                        ${ExportDefs} x265.cpp x265.h x265cli.h x265-extras.h x265-extras.cpp)
         if(WIN32 OR NOT ENABLE_SHARED OR INTEL_CXX)
             # The CLI cannot link to the shared library on Windows, it


More information about the x265-devel mailing list