source: trunk/README@ 107

Last change on this file since 107 was 107, checked in by smurzch2, 14 years ago

Add install targets to the cmake build system.

File size: 1.2 KB
Line 
1This is OSCam: Open Source Cam.
2
3The base is MpCS version 0.9d. Thanks a lot to all the authors/contributors.
4
5Base code for videoguard2 support is from VDR-SC.
6
7Pointers
8--------
9
10- svn repository:
11 http://streamboard.gmc.to/svn/oscam
12
13- trac instance:
14 http://streamboard.gmc.to:8001/oscam
15
16- wiki:
17 http://streamboard.gmc.to:8001/oscam/wiki
18
19Get sources from SVN
20--------------------
21
22 svn co http://streamboard.gmc.to/svn/oscam/trunk oscam
23 cd oscam
24
25Build with CMake (new solution for building)
26--------------------------------------------
27
28 mkdir build_dir
29 cd build_dir
30 cmake ..
31 make
32
33Build with different toolchain (cross-compilation)
34--------------------------------------------------
35
36 cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/toolchain-powerpc-tuxbox.cmake ..
37
38Change build parameters (on command line)
39-----------------------------------------
40
41 cmake -DCS_CONFDIR=/where/is/config/files ..
42 cmake -DCMAKE_INSTALL_PREFIX=/where/to/installed ..
43 cmake -DCS_CONFDIR=/where/is/config/files -DCMAKE_INSTALL_PREFIX=/where/to/installed ..
44
45Change build parameters (with interface)
46----------------------------------------
47
48 ccmake ..
49
50Install
51-------
52
53 make install
Note: See TracBrowser for help on using the repository browser.