getting_started:tutorials:say_hello
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| getting_started:tutorials:say_hello [2017/06/22 09:38] – [Create a New Project] graf | getting_started:tutorials:say_hello [2018/11/13 10:25] (current) – removed graf | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Say Hello with EEROS ====== | ||
| - | ===== Preparation ===== | ||
| - | We suggest to use [[https:// | ||
| - | < | ||
| - | $ apt-get install kdevelop | ||
| - | </ | ||
| - | |||
| - | ===== Create a New Project ===== | ||
| - | - Start KDevelop | ||
| - | - Create a new C++ project: | ||
| - | - Project -> New from Template... | ||
| - | - Choose Standard/ | ||
| - | - Create the project by clicking Finish | ||
| - | - Create the build configuration. It is recommended to put the target architecture in the name of the build folder. Put the location where EEROS is installed in the " | ||
| - | |||
| - | ==== Say Hello World with EEROS ==== | ||
| - | |||
| - | - Copy the following code into " | ||
| - | #include < | ||
| - | #include < | ||
| - | #include < | ||
| - | |||
| - | int main() { | ||
| - | using namespace eeros:: | ||
| - | |||
| - | StreamLogWriter w(std:: | ||
| - | Logger log; | ||
| - | |||
| - | log.info() << " | ||
| - | |||
| - | return 0; | ||
| - | } | ||
| - | </ | ||
| - | - Open CMakeLists.txt file, delete the text written on it and copy the following: <code cpp> | ||
| - | cmake_minimum_required(VERSION 2.8) | ||
| - | |||
| - | project(test-project) | ||
| - | |||
| - | find_package(EEROS REQUIRED) | ||
| - | include_directories(${EEROS_INCLUDE_DIR}; | ||
| - | link_directories(${EEROS_LIB_DIR}; | ||
| - | |||
| - | set(CMAKE_CXX_FLAGS " | ||
| - | |||
| - | add_executable(test-project main.cpp) | ||
| - | target_link_libraries(test-project eeros ucl ${CMAKE_DL_LIBS}) | ||
| - | </ | ||
| - | - Build the project by clicking on the " | ||
| - | |||
| - | ==== Run the Hello World Program ==== | ||
| - | |||
| - | - Open a terminal | ||
| - | - Navigate to the build folder of your project (e.g. cd / | ||
| - | - Run the program with the command: ./ | ||
| - | |||
| - | {{ : | ||
getting_started/tutorials/say_hello.1498117104.txt.gz · Last modified: 2017/06/22 09:38 by graf