Skip to content

Commit

Permalink
feat(bugfix): include image toolbox dependency in build
Browse files Browse the repository at this point in the history
  • Loading branch information
ocehugo committed Jul 15, 2020
1 parent 5f8eada commit 8a8e659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
}
VERSION_FILE = ".standalone_canonical_version"
MATLAB_VERSION = "R2018b"
MATLAB_TOOLBOXES_TO_INCLUDE: List[str] = ["signal"]
MATLAB_TOOLBOXES_TO_INCLUDE: List[str] = ["signal/signal","stats/stats","images/imuitools"]


def find_matlab_rootpath(arch_str):
Expand Down Expand Up @@ -178,7 +178,7 @@ def create_mcc_call_sig(
if MATLAB_TOOLBOXES_TO_INCLUDE:
matlab_root_path = find_matlab_rootpath(arch)
extra_toolbox_paths = [
os.path.join(matlab_root_path, "toolbox", x, x)
os.path.join(matlab_root_path, "toolbox", x)
for x in MATLAB_TOOLBOXES_TO_INCLUDE
]

Expand Down

0 comments on commit 8a8e659

Please sign in to comment.