Changes between Version 2 and Version 3 of FEPSimulatorInstallation


Ignore:
Timestamp:
11/07/2017 10:34:32 AM (8 years ago)
Author:
jtorres
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FEPSimulatorInstallation

    v2 v3  
    2222This will checkout the FEPSimulator into your home user directory. 
    2323 
    24 == Step 3: Build the FEPSimulator project == 
     24== Step 3: Build and run the FEPSimulator project == 
    2525In your terminal, run: 
    2626{{{ 
    27     $ cd FEPSimulator/ && make 
    28 }}} 
    29  
    30 == Step 4: run the ./runFEPSim bash script == 
    31 To start the FEPSimulator, you will need to run the ./runFEPSim bash script, located in the FEPSimulator/ repository. \\ 
    32  
    33 In your terminal, run: \\ 
    34 {{{ 
    35     $ ./runFEPSim 
     27    $ cd FEPSimulator/ && ./buildLinuxVM && ./runFEPSim 
    3628}}} 
    3729 
     
    4032 
    4133== Note to Developers == 
     34 * The FEPSim project was configured as a NetBeans project 
    4235 * Be sure to install the C++ plugin to !NetBeans in order to open the FEPSimulator Project. 
    43 If you are working on the FEPSimulator code, it is dependent on the tinyxml static library to parse the message sent from the ATMSDriver. \\ 
    44 The library files are included in the repo @ FEPSimulator/tinyxml \\ 
    45 The project is configured to link the linux static library file, a file named "tinyxml.a". (Because in production it runs on linux VM) \\ 
    46 Also included in the tinyxml/ folder is a static library file for osx operating systems, a file named "libosxtinyxml.a" \\ 
    47 If you are on another operating system, create a new Netbeans Static C++ library application, add the tinyxml files located in FEPSimulator/tinyxml/ and run to create the static library for your operating system. \\ 
    48 To link the correct library file for your os, in Netbeans, [[BR]] 
    49 right click your project > Properties > Linker > Libraries > Add Library File... > Select the appropriate static library file. \\