Add simplestore server to build.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Fri, 28 Jan 2011 23:36:35 +0000 (15:36 -0800)
committerMichael Vrable <mvrable@cs.ucsd.edu>
Fri, 28 Jan 2011 23:36:35 +0000 (15:36 -0800)
.gitignore
CMakeLists.txt
simplestore/CMakeLists.txt [new file with mode: 0644]

index 273148a..a8e1b2e 100644 (file)
@@ -17,6 +17,6 @@ microbench/readbench
 microbench/statbench
 nfs3/nfsproxy
 nfs3/synclient
-simplestore/server
+simplestore/simpleserver
 cloudbench/s3readbench
 cloudbench/s3readlatency
index 9fcfeca..379a92c 100644 (file)
@@ -14,3 +14,4 @@ add_subdirectory(nfs3)
 add_subdirectory(microbench)
 add_subdirectory(cloudbench)
 add_subdirectory(logbench)
+add_subdirectory(simplestore)
diff --git a/simplestore/CMakeLists.txt b/simplestore/CMakeLists.txt
new file mode 100644 (file)
index 0000000..80c0787
--- /dev/null
@@ -0,0 +1,3 @@
+add_executable(simpleserver server.c)
+
+set(CMAKE_C_FLAGS "-Wall -std=gnu99 ${CMAKE_C_FLAGS}")