Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Ignore JetBrains IDE files
.idea/

# Ignore build directorys
build/
cmake-*/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[submodule "common"]
path = third_party/moonlight-common-c
url = https://github.com/moonlight-stream/moonlight-common-c.git
[submodule "third_party/libcec"]
path = third_party/libcec
url = https://github.com/Pulse-Eight/libcec.git
[submodule "third_party/SDL_GameControllerDB"]
path = third_party/SDL_GameControllerDB
url = https://github.com/gabomdq/SDL_GameControllerDB.git
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if (CEC_FOUND)
list(APPEND MOONLIGHT_DEFINITIONS HAVE_LIBCEC)
list(APPEND MOONLIGHT_OPTIONS CEC)
target_sources(moonlight PRIVATE ./src/input/cec.c)
target_include_directories(moonlight PRIVATE ./third_party/libcec ${CEC_INCLUDE_DIRS})
target_include_directories(moonlight PRIVATE ./third_party/libcec/include ${CEC_INCLUDE_DIRS})
target_link_libraries(moonlight ${CEC_LIBRARIES})
endif()

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Moonlight also has [PC](https://github.com/moonlight-stream/moonlight-qt), [Andr

## Documentation

More information about installing and runnning Moonlight Embedded is available on the [wiki](https://github.com/moonlight-stream/moonlight-embedded/wiki).
More information about installing and running Moonlight Embedded is available on the [wiki](https://github.com/moonlight-stream/moonlight-embedded/wiki).

## Bugs

Expand Down
1 change: 1 addition & 0 deletions third_party/libcec
Submodule libcec added at 29d82c
Loading