User Tools

Site Tools


getting_started:compile_eeros

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
getting_started:compile_eeros [2019/10/12 19:47] – [Compile Manually in Terminal] grafgetting_started:compile_eeros [2019/10/12 19:48] – [Compile Manually in Terminal] graf
Line 19: Line 19:
 Compile and install EEROS to a custom folder: Compile and install EEROS to a custom folder:
 <code> <code>
 +$ cd path/to/working/directory
 +$ mkdir build-eeros-x86-64
 +$ cd build-eeros-x86-64
 +$ cmake -DCMAKE_INSTALL_PREFIX=/absolute/path/to/working/directory/install-x86-64 ..
 +$ make
 $ make install $ make install
 </code> </code>
Line 30: Line 35:
 We recommend to not install EEROS globally on your system. However, if you want to install EEROS globally you have to execute the following commands: We recommend to not install EEROS globally on your system. However, if you want to install EEROS globally you have to execute the following commands:
 <code> <code>
-$ mkdir build 
-$ cd build 
-$ cmake .. 
-$ make 
 # make install # make install
 </code> </code>