blob: ec1e6ed2df029b2ea9fde59616a54aeadd819981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/** @mainpage DCP-o-matic
*
* DCP-o-matic is a tool to create digital cinema packages (DCPs) from
* video files, sets of image files, sound and subtitle files. It is written in C++
* and distributed under the GPL.
*
* More details can be found at https://dcpomatic.com/
*
* The source is split into four main parts:
*
* Directory | Description
* ------------|---------------------------------------------------------------------------------------------
* `src/lib` | ‘backend’ library with no user interface code.
* `src/wx` | wxWidgets front end code that is common to all tools.
* `src/tools` | Command line and GUI front-ends for the separate tools (main DCP-o-matic, KDM creator etc.)
* `test` | Unit tests
*
* It is build with `waf`, using something like \code
*
* ./waf configure --enable-debug --prefix=/opt
* ./waf
* sudo ./waf install
*
* \endcode
*
*/
|