We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
Difference between revisions of "Building OLA for Windows"
From wiki.openlighting.org
(→Install Mingw, msys & build tools) |
|||
Line 8: | Line 8: | ||
$ mingw-get.exe install msys-automake msys-autoconf libtool | $ mingw-get.exe install msys-automake msys-autoconf libtool | ||
− | + | ||
== Install Git == | == Install Git == | ||
Revision as of 08:16, 30 April 2011
This describes how to get OLA compiled for windows, it's a work in progress so it's unlikely to work as is. This tutorial uses gcc as the compiler, other compilers have not been tested.
Contents
Install Mingw, msys & build tools
Together MinGW & msys provide a unix-style shell environment & compiler suite for windows. Read the instructions at the MinGW site for more info. MinGW now provides an installer to get most of the system up and running quickly. Download the installer and make sure you select "C++ Compiler". "MSYS Basic System" & "MinGW Developer Toolkit" when prompted.
Once the installer has completed, open the msys shell (under Programs > MinGW) and install some additional packages:
$ mingw-get.exe install msys-automake msys-autoconf libtool
Install Git
See http://code.google.com/p/msysgit/, be sure to select "checkout as is, commit unix style" otherwise you'll get autoconf errors.
Install Dependencies
- http://code.google.com/p/protobuf/ . Note you need to install the .tar.gz as the zip just contains protoc (we need the libraries as well)
- http://www.ossp.org/pkg/lib/uuid/ , be sure to run configure with ./configure --prefix=/mingw --includedir /mingw/include/ossp
- http://sourceforge.net/projects/cppunit/files/ , download version
Build OLA
- Do a git checkout of OLA
- Run ./configure
$ ./configure
- Build
$ make
Current TODO
- Fix the Socket & SelectServer classes or replace them with whatever makes sense on windows
- The USB Pro plugin needs a way to find devices, obviously /dev doesn't exist
- The DMX USB requires libusb win32. Not sure what the status of this is