Add simple hello world application

This commit is contained in:
Alexander Weidinger
2019-01-08 22:32:55 +01:00
commit 3f0abadde6
3 changed files with 35 additions and 0 deletions

6
src/app/hello/main.cc Normal file
View File

@@ -0,0 +1,6 @@
#include <base/component.h>
void Component::construct(Genode::Env &env)
{
Genode::log("Hello World!");
}

3
src/app/hello/target.mk Normal file
View File

@@ -0,0 +1,3 @@
TARGET = hello
SRC_CC = main.cc
LIBS = base