Difference between revisions of "Dotnet"

From RobotinoWiki
m (Prerequisites)
Line 1: Line 1:
== Building the Openrobotino API2 DotNet Wrapper ==
+
= Building the Openrobotino API2 DotNet Wrapper =
  
=== Prerequisites ===
+
== Prerequisites ==
 
# Firstly, make sure you have the RobotinoAPI2 installed on your system. You also have the option of building it from the sources which can be done from [http://wiki.openrobotino.org/index.php?title=API2#Building_API2_from_source here]. If building from the sources, '''DO NOT''' forget to set the environment variables pointing to the RobotinoAPI2 install folder.
 
# Firstly, make sure you have the RobotinoAPI2 installed on your system. You also have the option of building it from the sources which can be done from [http://wiki.openrobotino.org/index.php?title=API2#Building_API2_from_source here]. If building from the sources, '''DO NOT''' forget to set the environment variables pointing to the RobotinoAPI2 install folder.
 
# Swigwin - Download the swigwin package from [http://prdownloads.sourceforge.net/swig/swigwin-2.0.4.zip here] and unzip it in the '''C:\Program Files''' or ('''C:\Program Files (x86)''' for 64Bit Windows) directory.
 
# Swigwin - Download the swigwin package from [http://prdownloads.sourceforge.net/swig/swigwin-2.0.4.zip here] and unzip it in the '''C:\Program Files''' or ('''C:\Program Files (x86)''' for 64Bit Windows) directory.
  
=== Building the wrapper ===
+
== Building the wrapper ==
 
# Check out the package from [http://svn.openrobotino.org/wrapper/trunk/ here].
 
# Check out the package from [http://svn.openrobotino.org/wrapper/trunk/ here].
 
# Build and install the package using CMake. Note: the CMake looks for the Openrobotino API2 package using the environment variable. Make sure it is set.
 
# Build and install the package using CMake. Note: the CMake looks for the Openrobotino API2 package using the environment variable. Make sure it is set.
Line 11: Line 11:
 
# Done!
 
# Done!
  
=== Examples ===
+
== Examples ==
 
A few examples (CS projects) have been provided and can be found under the examples/dotnet folder.
 
A few examples (CS projects) have been provided and can be found under the examples/dotnet folder.
 +
 +
= The Openrobotino Forum =
 +
 +
The [http://forum.openrobotino.org/ Openrobotino Forum] connects the developers with the users. Here you will find more support and you can also post your questions/problems/bugs etc and get a quick response.

Revision as of 10:09, 6 December 2011

Building the Openrobotino API2 DotNet Wrapper

Prerequisites

  1. Firstly, make sure you have the RobotinoAPI2 installed on your system. You also have the option of building it from the sources which can be done from here. If building from the sources, DO NOT forget to set the environment variables pointing to the RobotinoAPI2 install folder.
  2. Swigwin - Download the swigwin package from here and unzip it in the C:\Program Files or (C:\Program Files (x86) for 64Bit Windows) directory.

Building the wrapper

  1. Check out the package from here.
  2. Build and install the package using CMake. Note: the CMake looks for the Openrobotino API2 package using the environment variable. Make sure it is set.
  3. Once built and installed, set the evironment variable ROBOTINOAPI2WRAPPER32_DIR (if built using a 32Bit compiler ) pointing to the install folder. For example:
    ROBOTINOAPI2WRAPPER32_DIR=C:\Projects\_builds\build_openrobotino_api2_wrapper\install
    or if built using a 64Bit compiler then set an environment variable ROBOTINOAPI2WRAPPER64_DIR instead.
  4. Done!

Examples

A few examples (CS projects) have been provided and can be found under the examples/dotnet folder.

The Openrobotino Forum

The Openrobotino Forum connects the developers with the users. Here you will find more support and you can also post your questions/problems/bugs etc and get a quick response.