Skip to content

Commit

Permalink
feat(ThirdParty): Add USS Library Support (#1102)
Browse files Browse the repository at this point in the history
Co-authored-by: Omer Demir <Omer.Demir@analog.com>
  • Loading branch information
Jake-Carter and demiromerb authored Aug 5, 2024
1 parent 25e02de commit 98e234e
Show file tree
Hide file tree
Showing 7 changed files with 1,050 additions and 26 deletions.
15 changes: 15 additions & 0 deletions Libraries/libs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -319,3 +319,18 @@ LIB_CLI_DIR ?= $(LIBS_DIR)/CLI
include $(LIB_CLI_DIR)/CLI.mk
endif
# ************************

# Unified Security Software (USS) (Disabled by default)
# Only available via NDA
# ************************
LIB_USS ?= 0
ifeq ($(LIB_USS),1)
LIB_USS_DIR ?= $(LIBS_DIR)/USS

ifeq ("$(wildcard $(LIB_USS_DIR))","")
$(error ERR_LIBNOTFOUND: USS library not found (Only available via NDA). Please install the USS package to $(LIB_USS_DIR))
endif

include $(LIB_USS_DIR)/uss.mk
endif
# ************************
Loading

0 comments on commit 98e234e

Please sign in to comment.