mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 07:02:46 +02:00
clean up the gitignore, add some basic CMake information to README
This commit is contained in:
parent
0f0cee1a46
commit
242d6898ba
2 changed files with 15 additions and 11 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -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
|
15
README.md
15
README.md
|
@ -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.
|
Loading…
Reference in a new issue