Commit cf8e78c6 authored by Manuel Wudka-Robles's avatar Manuel Wudka-Robles
Browse files

Created minimal instructions

parent 248e00a6
Loading
Loading
Loading
Loading

README.md

0 → 100644
+6 −0
Original line number Diff line number Diff line
To build the examples you need `cmake`, `git` and a working build system. Once you've acquired those items you can build all the examples by running:

    cmake .
    make

Binaries will appear in the working directory. The first build takes several minutes because all the dependencies are downloaded and compiled.
 No newline at end of file
+2 −0
Original line number Diff line number Diff line
// This is shows a minimal example of issuing an async request and processing the result

#include <fcntl.h>
#include <sys/select.h>

+2 −0
Original line number Diff line number Diff line
// This is a minimal blocking get/blocking put example

#include <stdio.h>

#include "glog/logging.h"
+2 −0
Original line number Diff line number Diff line
// This shows how to erase a drive

#include <stdio.h>

#include "protobufutil/message_stream.h"
+2 −0
Original line number Diff line number Diff line
// This simple utility can periodically print various stats about a drive

#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#include <stdio.h>
Loading