-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformat source. Add backlog indicator.
- Loading branch information
Showing
19 changed files
with
561 additions
and
604 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
prebuilds/ | ||
*node_modules/ | ||
lib-build | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Custom FindNDI.cmake file to locate NDI SDK on macOS | ||
set(NDI_SDK_PATH "/Library/NDI SDK for Apple") | ||
|
||
# Locate the NDI library | ||
find_library(NDI_LIBRARIES | ||
NAMES ndi | ||
PATHS ${NDI_SDK_PATH}/lib/macOS | ||
REQUIRED | ||
) | ||
|
||
# Locate the NDI headers | ||
find_path(NDI_INCLUDE_DIR | ||
NAMES Processing.NDI.Lib.h | ||
PATHS ${NDI_SDK_PATH}/include | ||
REQUIRED | ||
) | ||
|
||
# Export the found paths for external use | ||
if(NDI_LIBRARIES AND NDI_INCLUDE_DIR) | ||
set(NDI_FOUND TRUE) | ||
set(NDI_LIBRARIES ${NDI_LIBRARIES}) | ||
set(NDI_INCLUDE_DIR ${NDI_INCLUDE_DIR}) | ||
else() | ||
set(NDI_FOUND FALSE) | ||
endif() | ||
|
||
mark_as_advanced(NDI_LIBRARIES NDI_INCLUDE_DIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.