Fix the build of the example.
diff --git a/Examples/C++/COMPILING b/Examples/C++/COMPILING
index 9effdf4..d7f6548 100644
--- a/Examples/C++/COMPILING
+++ b/Examples/C++/COMPILING
@@ -1,12 +1,10 @@
 The easiest (if not the most elegant) way to compile the example is:
 
-clang++ water.cpp ../../IsoSpec++/unity-build.cpp -std=c++11
+clang++ water.cpp -lIsoSpec++ -std=c++11 -o water
 
 You may replace clang++ with g++ if you do not have LLVM installed.
 
 Run the example by:
 
-./a.out
-
-
+./water
 
diff --git a/Examples/C++/water.cpp b/Examples/C++/water.cpp
index 471f0a7..60293ad 100644
--- a/Examples/C++/water.cpp
+++ b/Examples/C++/water.cpp
@@ -1,6 +1,6 @@
 #include <iostream>
 #include <cassert>
-#include "../../IsoSpec++/isoSpec++.h"
+#include <IsoSpec++/isoSpec++.h>
 
 using namespace IsoSpec;
 
