Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 1.45 KB

INSTALL_WINDOWS.md

File metadata and controls

48 lines (29 loc) · 1.45 KB

Installation on Windows

Supported compilers

At this moment, compilation has been tested on Windows 7&10, and is supported when using Visual Studio 2013. Patches for other versions are welcome.

Installation

Using a combination of pre-compiled binaries and self-compiled dependencies in a local workspace. To make things easier, use a MinGW shell for your editing work, and only use the Windows cmd for configuring and building. You might also need to disable the Windows firewall.

  1. Install cmake, make sure to select the "Add CMake to system path for all users" option in the install dialog box.

    CMake

  2. Make a directory to work in, e.g.:

     mkdir ign-ws
     cd ign-ws
    
  3. In a Windows Command Prompt, load your compiler setup, e.g.:

     "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
    
  4. Clone Ignition Fuel-Tools:

     git clone https://github.com/ignitionrobotics/ign-fuel-tools
     cd ign-fuel-tools
     mkdir build
    
  5. In the Windows Command Prompt, configure and build:

     cd ign-fuel-tools\build
     ..\configure
     nmake install
    

    You should now have an installation of Ignition Fuel-Tools in ign-ws/ign-fuel-tools/build/install.

Run tests

  1. In the Windows Command Prompt, run the test suite:

    cd ign-fuel-tools\build ctest