mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 23:57:13 +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
|
*.moved-aside
|
||||||
DerivedData
|
DerivedData
|
||||||
.idea/
|
.idea/
|
||||||
*.hmap
|
*.hmap
|
||||||
|
|
||||||
interface/Debug/
|
|
||||||
interface/external/
|
|
||||||
interface/hifi.build/
|
|
||||||
|
|
||||||
shared/Debug/
|
|
||||||
shared/hifi.build/
|
|
||||||
|
|
||||||
interface/includes/InterfaceConfig.h
|
|
15
README.md
15
README.md
|
@ -1,4 +1,17 @@
|
||||||
interface
|
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