./configure --prefix=<path>/RPC/libmicrohttpd --with-libcurl=<path>/RPC/curl
make
make install
export LD_LIBRARY_PATH=./libmicrohttpd/lib/
g++ -std=c++11 -o ServerStub.out ServerStub.cpp -I./libmicrohttpd/include/ -L./libmicrohttpd/lib/ -lmicrohttpd
export LD_LIBRARY_PATH=./curl/lib/
g++ -std=c++11 -o main.out main.cpp -I./curl/include/ -L./curl/lib/ -lcurl