-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Controller integration #125
base: master
Are you sure you want to change the base?
Changes from 18 commits
1ced330
a4fc526
5a4a62f
6ed2bfa
61332c8
1e110c1
5dfd217
814097f
0565ef5
f72ba13
9b1e0b6
124fd8e
16564da
80fca11
ad059b4
c1be95c
c78f592
da14a85
bd45e00
0e1eb86
4f46a40
61c5bba
62fd7b7
2cd70f4
3e3b4b4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,5 @@ | |
# Build directory | ||
build | ||
|
||
nbproject | ||
CMakeFiles |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[submodule "openvr"] | ||
path = openvr | ||
url = https://github.com/ValveSoftware/openvr.git | ||
url = https://github.com/ValveSoftware/openvr | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had some issues with submodule when I first created my fork. I had to delete it. I added it back with the git submodule add. I will change this back to .git though as I think its probably something on my end that wasn't correct. |
||
[submodule "vendor/OSVR-Display"] | ||
path = vendor/OSVR-Display | ||
url = https://github.com/OSVR/OSVR-Display.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These folders should only exist in the build tree and the build tree should be outside of the source tree or contained within a subdirectory (e.g.,
build
) so as not to interfere with the source tree.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are present in my repository. I use netbeans and netbeans automatically creates nbproject. I also create the build directory within the project directory. This is why I added them to .gitignore.