fixed: cleaned up configure, trying to once again recombine AC_MSG_WARN into single...
[deb_libcec.git] / README
CommitLineData
e4e13f5b
LOK
1This library provides support for the Pulse-Eight USB-CEC adapter.
2
0e8ac6a7
LOK
3===============================================================================
4 === Linux ===
5===============================================================================
6
7libCEC needs the following dependencies in order to work correctly:
8* udev v151 or later
9* cdc-acm support compiled into the kernel or available as module
10
11To compile libCEC on Linux, you'll need the following dependencies:
12* autoconf 2.13 or later
13* automake 1.11 or later
10ccd54d 14* pkg-config
80feba65 15* libtool
0e8ac6a7
LOK
16* udev development headers v151 or later
17* gcc 4.2 or later
18
19To compile, execute the following commands:
20# autoreconf -vif
21# ./configure --prefix=/usr
22# make
23# sudo make install
24
25===============================================================================
26 === OS-X ===
27===============================================================================
28
29To compile libCEC on OS-X, you'll need the following dependencies:
30* autoconf 2.13 or later
31* automake 1.11 or later
10ccd54d 32* pkg-config
0e8ac6a7
LOK
33* xcode (TODO: version?)
34
35To compile, execute the following commands (TODO: please verify):
f5ccf647
LOK
36# autoreconf -vif
37# ./configure --prefix=/usr
38# make
39# sudo make install
abbca718 40
0e8ac6a7
LOK
41===============================================================================
42 === Windows ===
43===============================================================================
44
45To compile libCEC on Windows, you'll need Visual C++ 2010 or Visual Studio 2010
46The installer needs the Windows DDK (Driver Development Kit) and Nullsoft's
47NSIS.
48
49To compile libCEC, follow these instructions:
f5ccf647
LOK
50* open /project/libcec.sln with Visual C++ 2010 or Visual Studio 2010.
51* build the project.
e4e13f5b
LOK
52
53To build an installer on Windows:
f5ccf647
LOK
54* download and install the Windows DDK.
55* download and install NSIS.
f5ccf647
LOK
56* go to /project and execute create-installer.cmd to create the installer.
57* the installer is stored as /project/libCEC-installer.exe
abbca718 58
0e8ac6a7
LOK
59===============================================================================
60 === Debugging / Testing ===
61===============================================================================
62
63We provide a test client, named cec-client, to debug the device.
64To check whether the device can be detected, execute the following command:
65* cec-client -l
66
67"cec-client -h" shows a list of commands and options that are available.
abbca718 68
0e8ac6a7
LOK
69===============================================================================
70 === Developers ===
71===============================================================================
61f3c2ad 72
0e8ac6a7
LOK
73We provide a C, C++ and .NET CLR interface to the adapter.
74
75C++ developers:
76* the API can be found in /include/cec.h
77* an example implementation can be found in /src/testclient/main.cpp
78
79C developers:
80* the API can be found in /include/cecc.h
81
82.NET developers:
61f3c2ad 83* add a reference to LibCecSharp.dll
0e8ac6a7
LOK
84* an example can be found in \src\CecSharpTester\CecSharpClient.cs
85
86===============================================================================
87 === Developers Agreement ===
88===============================================================================
cc30d5c9 89
0e8ac6a7
LOK
90If you wish to contribute to this project, you must first sign our contributors
91agreement. Please see http://www.pulse-eight.net/contributors for more
92information.