User Tools

Site Tools


getting_started:tutorials:say_hello

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
Last revisionBoth sides next revision
getting_started:tutorials:say_hello [2017/06/22 10:01] – [Use KDevelop with Existing Build Configuration] grafgetting_started:tutorials:say_hello [2017/11/20 13:44] – [Test Program] graf
Line 23: Line 23:
    
 int main() { int main() {
- using namespace eeros::logger;+  using namespace eeros::logger;
    
- StreamLogWriter w(std::cout); +  StreamLogWriter w(std::cout); 
- Logger log;+  Logger log
 +  log.set(w);
    
- log.info() << "Hello, EEROS";+  log.info() << "Hello, EEROS";
  
- return 0;+  return 0;
 } }
 </code> </code>
-  - Open CMakeLists.txt file, delete the text written on it and copy the following: <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 2.8)
    
Line 64: Line 65:
   - Leave the entries for install directory, build type, and extra arguments empty. These settings will be fetched from the existing CMake configuration in your build directory.   - Leave the entries for install directory, build type, and extra arguments empty. These settings will be fetched from the existing CMake configuration in your build directory.
   - Click ''Ok''   - Click ''Ok''
-  - +  - Build