@@ -32,3 +32,12 @@
# Debug files
*.dSYM/
+# vim temp
+*.swp
+
+# cmake files
+Makefile
+CMakeFiles
+cmake_install.cmake
+/CMakeCache.txt
@@ -0,0 +1,5 @@
+cmake_minimum_required(VERSION 2.8)
+project(sandbox)
+add_subdirectory(src)
@@ -0,0 +1,2 @@
+add_executable(sandbox main.c)
@@ -0,0 +1,6 @@
+int main(int argc, char **argv)
+{
+ return 0;
+}