clean up the gitignore, add some basic CMake information to README

This commit is contained in:
Stephen Birarda 2013-03-12 10:22:28 -07:00
parent 0f0cee1a46
commit 242d6898ba
2 changed files with 15 additions and 11 deletions

11
.gitignore vendored
View file

@ -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

View file

@ -1,4 +1,17 @@
interface
=========
Test platform for various render and interface tests for next-gen VR system
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.