From 0137b0b32ce9026ca089108d5d6423425d4b3f78 Mon Sep 17 00:00:00 2001 From: Sarah Gilmore Date: Fri, 10 Nov 2023 16:42:15 -0500 Subject: [PATCH] Add debug print statements to packageMatlabInterfae --- matlab/tools/packageMatlabInterface.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/matlab/tools/packageMatlabInterface.m b/matlab/tools/packageMatlabInterface.m index 9a8a4bf571aa3..7567acfea689f 100644 --- a/matlab/tools/packageMatlabInterface.m +++ b/matlab/tools/packageMatlabInterface.m @@ -41,11 +41,14 @@ identifier = "ARROW-MATLAB-TOOLBOX"; opts = matlab.addons.toolbox.ToolboxOptions(toolboxFolder, identifier); +disp("ToolboxMatlabPath Post Construction: " + opts.ToolboxMatlabPath); opts.ToolboxName = "MATLAB Interface to Arrow"; opts.ToolboxVersion = toolboxVersion; opts.ToolboxMatlabPath = toolboxFolder; +disp("ToolboxMatlabPath Post Set: " + opts.ToolboxMatlabPath); + % Set the SupportedPlatforms opts.SupportedPlatforms.Win64 = true; opts.SupportedPlatforms.Maci64 = true;