|
@@ -0,0 +1,14 @@
|
|
|
|
|
+source_dir="source/"
|
|
|
|
|
+headers="$source_dir/*.hpp"
|
|
|
|
|
+sources="$source_dir/*.cpp"
|
|
|
|
|
+
|
|
|
|
|
+headers_output_root="headers"
|
|
|
|
|
+headers_output="$headers_output_root/cx-cpp-http/"
|
|
|
|
|
+
|
|
|
|
|
+# Prepare headers
|
|
|
|
|
+rm -rf $headers_output
|
|
|
|
|
+rm -rf $headers_output_root
|
|
|
|
|
+
|
|
|
|
|
+mkdir $headers_output_root
|
|
|
|
|
+mkdir $headers_output
|
|
|
|
|
+cp $headers $headers_output/
|