From 242d6898ba96d190c3322de3dbc50cb988e66b7f Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 12 Mar 2013 10:22:28 -0700 Subject: [PATCH] clean up the gitignore, add some basic CMake information to README --- .gitignore | 11 +---------- README.md | 15 ++++++++++++++- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index fa3df0078e..b6ca7c09e8 100644 --- a/.gitignore +++ b/.gitignore @@ -23,13 +23,4 @@ profile *.moved-aside DerivedData .idea/ -*.hmap - -interface/Debug/ -interface/external/ -interface/hifi.build/ - -shared/Debug/ -shared/hifi.build/ - -interface/includes/InterfaceConfig.h +*.hmap \ No newline at end of file diff --git a/README.md b/README.md index 3f0c53db6b..49112f2e38 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,17 @@ interface ========= -Test platform for various render and interface tests for next-gen VR system \ No newline at end of file +Test platform for various render and interface tests for next-gen VR system. + +CMake +===== + +This project uses CMake to generate build files and project files for your platform. + +Create a build directory in the root of your checkout and then run the CMake build from there. This will keep the rest of the directory clean, and makes the gitignore a little easier to handle, since we can just ignore build. + + mkdir build + cd build + cmake .. -GXCode + +Those are the commands used on OS X to run CMake from the build folder and generate XCode project files. \ No newline at end of file