updated changelog (release)
[deb_libcec.git] / README
CommitLineData
e4e13f5b
LOK
1This library provides support for the Pulse-Eight USB-CEC adapter.
2
a1a112ac
LOK
3You can find a list of frequently asked questions on the following page:
4 http://libcec.pulse-eight.com/faq
5
0e8ac6a7
LOK
6===============================================================================
7 === Linux ===
8===============================================================================
9
10libCEC needs the following dependencies in order to work correctly:
11* udev v151 or later
12* cdc-acm support compiled into the kernel or available as module
4b215264 13* liblockdev 1.0 or later
0e8ac6a7
LOK
14
15To compile libCEC on Linux, you'll need the following dependencies:
16* autoconf 2.13 or later
17* automake 1.11 or later
80feba65 18* libtool
0e8ac6a7 19* gcc 4.2 or later
4b215264 20* liblockdev 1.0 development headers
0e8ac6a7 21
2b44051c
LOK
22The following dependencies are recommended. Without them, the adapter can not
23be auto-detected.
24* pkg-config
25* udev development headers v151 or later
26
0e8ac6a7
LOK
27To compile, execute the following commands:
28# autoreconf -vif
7b85ea89 29# ./configure
0e8ac6a7
LOK
30# make
31# sudo make install
32
33===============================================================================
34 === OS-X ===
35===============================================================================
36
37To compile libCEC on OS-X, you'll need the following dependencies:
38* autoconf 2.13 or later
39* automake 1.11 or later
10ccd54d 40* pkg-config
4777f253 41* xcode 3.2.6 or later
0e8ac6a7
LOK
42
43To compile, execute the following commands (TODO: please verify):
f5ccf647 44# autoreconf -vif
7b85ea89 45# ./configure
f5ccf647
LOK
46# make
47# sudo make install
abbca718 48
4777f253
ME
49# Note: You may need to copy pkg.m4 to your m4 sources directory
50
0e8ac6a7
LOK
51===============================================================================
52 === Windows ===
53===============================================================================
54
55To compile libCEC on Windows, you'll need Visual C++ 2010 or Visual Studio 2010
56The installer needs the Windows DDK (Driver Development Kit) and Nullsoft's
57NSIS.
58
9e58420e
LOK
59To compile LibCecSharp on Windows, you'll need Visual C++ 2008 or Visual Studio
602008, because it is compiled against .NET 2.0.
61
0e8ac6a7 62To compile libCEC, follow these instructions:
f5ccf647
LOK
63* open /project/libcec.sln with Visual C++ 2010 or Visual Studio 2010.
64* build the project.
e4e13f5b
LOK
65
66To build an installer on Windows:
f5ccf647 67* download and install NSIS.
9e58420e
LOK
68* go to /project and execute create-installer.bat to create the installer.
69* the installer is stored as /build/libCEC-installer.exe
abbca718 70
4f2c35a3
MK
71You will need both Visual Studio 2008 and Visual Studio 2010 to build the
72installer from the command line. To build with Visual C++ 2008 and 2010,
73you will need to manually build libcec with Visual C++ 2010 and then
74build LibCecSharp.sln with Visual Studio 2008. See create-installer.bat
75for the required steps.
76
0e8ac6a7
LOK
77===============================================================================
78 === Debugging / Testing ===
79===============================================================================
80
81We provide a test client, named cec-client, to debug the device.
82To check whether the device can be detected, execute the following command:
83* cec-client -l
84
85"cec-client -h" shows a list of commands and options that are available.
abbca718 86
0e8ac6a7
LOK
87===============================================================================
88 === Developers ===
89===============================================================================
61f3c2ad 90
0e8ac6a7
LOK
91We provide a C, C++ and .NET CLR interface to the adapter.
92
93C++ developers:
94* the API can be found in /include/cec.h
95* an example implementation can be found in /src/testclient/main.cpp
96
97C developers:
98* the API can be found in /include/cecc.h
99
100.NET developers:
61f3c2ad 101* add a reference to LibCecSharp.dll
0e8ac6a7
LOK
102* an example can be found in \src\CecSharpTester\CecSharpClient.cs
103
104===============================================================================
105 === Developers Agreement ===
106===============================================================================
cc30d5c9 107
0e8ac6a7
LOK
108If you wish to contribute to this project, you must first sign our contributors
109agreement. Please see http://www.pulse-eight.net/contributors for more
110information.