solettaproject / soletta-small-oses-samples

Soletta samples for Small OSes
Apache License 2.0
1 stars 3 forks source link

sol-oic.h is not found #31

Open mattiantonini opened 8 years ago

mattiantonini commented 8 years ago

Hi! I'm wondering if it is possible to create an oic-server in C for RIOT. I've tried to include sol-oic.h but it is not found.

#include <stdio.h>
#include <soletta.h>
#include <sol-coap.h>
#include <sol-oic.h>
#include <sol-oic-server.h>
#include <sol-gpio.h>
#include <sol-log.h>
#include <sol-mainloop.h>
#include <sol-network.h>
#include <sol-str-slice.h>
#include <sol-util.h>
#include <sol-vector.h>

static void
startup(void)
{
    printf("Hello World!");
}
SOL_MAIN_DEFAULT(startup, NULL);

Any Suggestion?

Cheers, Mattia