User Tools

Site Tools


getting_started:say_hello

Differences

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

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
getting_started:say_hello [2018/11/13 10:24] – created grafgetting_started:say_hello [2019/10/11 16:21] – [Say Hello with EEROS] graf
Line 1: Line 1:
 ====== Say Hello with EEROS ====== ====== Say Hello with EEROS ======
 +In order to be able to write your own EEROS programs or alter existing example applications, you could use any text editor and use the ''make.sh'' script on the command line. However, we recommend to use an integrated development environment. 
  
 ===== Preparation ===== ===== Preparation =====
Line 35: Line 36:
 </code> </code>
   - Open CMakeLists.txt file, delete the text written on it and copy/paste the following into it: <code cpp>   - Open CMakeLists.txt file, delete the text written on it and copy/paste the following into it: <code cpp>
-cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.5.1)
- +
 project(test-project) project(test-project)
- + 
 +set(CMAKE_CXX_STANDARD 14) 
 find_package(EEROS REQUIRED) find_package(EEROS REQUIRED)
 include_directories(${EEROS_INCLUDE_DIR};${EEROS_LIBUCL_INCLUDE_DIR}) include_directories(${EEROS_INCLUDE_DIR};${EEROS_LIBUCL_INCLUDE_DIR})
 link_directories(${EEROS_LIB_DIR};${EEROS_LIBUCL_LINK_DIR}) link_directories(${EEROS_LIB_DIR};${EEROS_LIBUCL_LINK_DIR})
-  +
-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11"+
- +
 add_executable(test-project main.cpp) add_executable(test-project main.cpp)
 target_link_libraries(test-project eeros ucl ${CMAKE_DL_LIBS}) target_link_libraries(test-project eeros ucl ${CMAKE_DL_LIBS})
-</code> (Note 1: "test-project" is the name of the dummy-project created for the example. Put your project name where "test-project" is. Note 2: This file is in the project folder. e.g. /home/abajric/work/test-project) +</code> (Note 1: "test-project" is the name of the dummy-project created for the example. Put your project name where "test-project" is. Note 2: This file is in the project folder. e.g. /home/you/work/test-project) 
   - Build the project by clicking on the "Build" button up, on the left.    - Build the project by clicking on the "Build" button up, on the left.