020364fde2d83ca7a477ef3557c1abd7e97efd82
[deb_x265.git] / source / encoder / CMakeLists.txt
1 # vim: syntax=cmake
2
3 if(GCC)
4 add_definitions(-Wno-uninitialized)
5 endif()
6
7 add_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)