============== gmfMVC Library ============== By Matthew D. Peavy Give Me Fish, LLC. ----------- Build HowTo ----------- This document describes the build procedure. We are using CMake for the primary build process. Included is also a Visual Studio 2005 solution file, if this is your preferred method. You should be able to open and build the project without reading furtther. For CMake builds, you must have CMake installed. It's free (beer, speech) software. Download from here: http://www.cmake.org Once that is installed, you can use the build scripts included (for either Linux or Windows). These drive the build process without using the CMake or Visual Studio interface. You will have to tweak the scripts for your computer. The scripts that start with "d" are for Debug, and those that start with "r" are for Release. For Windows, open the 01_GenerateSolution.bat file. For Linux, open the cmakeExec.sh shell script. *) It is assumed that cmake is already in your PATH, so if not, update the call to cmake to add the full path. *) Set the path to the place where the FindBoost.cmake file is found. *) Set the path to the boost root directory. If Boost has been installed on the system, this may not be necessary. Then run the build / make file: 02_Build.bat (Windows) rebuildComplete.sh (Linux) The library should be copied into: Build/Linux_Build/Debug (or Release) Build/MSVC2005_Build/Debug (or Release) ------------------------------------------------- This release also includes the FindgmfMVC.cmake file to facilitate projects linking to this one via the CMake build process. It's within the Link directory. ------------------------------------------------- Write me if you have questions.