Imported Upstream version 1.4
[deb_x265.git] / source / encoder / CMakeLists.txt
CommitLineData
72b9787e
JB
1# vim: syntax=cmake
2
3if(GCC)
4 add_definitions(-Wno-uninitialized)
5endif()
6
7add_library(encoder OBJECT ../x265.h
8 analysis.cpp analysis.h
9 search.cpp search.h
10 bitcost.cpp bitcost.h rdcost.h
11 motion.cpp motion.h
12 slicetype.cpp slicetype.h
13 frameencoder.cpp frameencoder.h
14 framefilter.cpp framefilter.h
15 level.cpp level.h
16 nal.cpp nal.h
17 sei.cpp sei.h
18 sao.cpp sao.h
19 entropy.cpp entropy.h
20 dpb.cpp dpb.h
21 ratecontrol.cpp ratecontrol.h
22 reference.cpp reference.h
23 encoder.cpp encoder.h
24 api.cpp
25 weightPrediction.cpp)