Add install document for ubuntu and windows.

This commit is contained in:
Taeho Oh 2016-01-24 02:00:21 +09:00
parent 2850960c21
commit 4229c65dd3
2 changed files with 45 additions and 0 deletions

12
INSTALL.ubuntu Normal file
View File

@ -0,0 +1,12 @@
1) Install Ubuntu 14.04 64bit.
2) Run as follows.
-------------------------------------------------------------------------------
$ sudo apt-get update
$ sudo apt-get install git libpcap-dev libgstreamer1.0-dev gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav
$ git clone https://bitbucket.org/ohhara/ohmulticastvideoscanner.git
$ cd ohmulticastvideoscanner
$ ./configure
$ make
$ sudo ./omvs 233.19.187.192/30 233.19.187.244 233.19.187.1
-------------------------------------------------------------------------------

33
INSTALL.windows Normal file
View File

@ -0,0 +1,33 @@
1) Install Windows 7 64bit.
2) Install WinPcap from http://www.winpcap.org/install/default.htm.
3) Install WinPcap Developer's Pack from https://www.winpcap.org/devel.htm.
4) Install MSYS2 from https://msys2.github.io/.
5) Start "MSYS2 Shell".
6) Run as follows.
-------------------------------------------------------------------------------
$ update-core
-------------------------------------------------------------------------------
7) Restart "MSYS2 Shell".
8) Run as follows.
-------------------------------------------------------------------------------
$ pacman -Su
$ pacman -S VCS base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-libav mingw-w64-x86_64-gst-plugins-bad mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-ugly
-------------------------------------------------------------------------------
9) Start "MinGW-w64 Win64 Shell".
10) Run as follows. Set CFLAGS and LDFLAGS properly when you run ./configure.
-------------------------------------------------------------------------------
$ git clone https://bitbucket.org/ohhara/ohmulticastvideoscanner.git
$ cd ohmultivideoscanner
$ CFLAGS="-IWpdPack/Include" LDFLAGS="-LWpdPack/Lib/x64" ./configure
$ make
$ ./omvs 233.19.187.192/30 233.19.187.244 233.19.187.1
-------------------------------------------------------------------------------