File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ tests/*.h5
12
12
# library files
13
13
* .dll
14
14
* .mex *
15
+ * .exe *
Original file line number Diff line number Diff line change @@ -87,6 +87,13 @@ cmake --build . --config %BUILD_TYPE% --target testrunner
87
87
88
88
IF %ERRORLEVEL% == 1 (EXIT /b)
89
89
90
+ ECHO --------------------------------------------------------------------------
91
+ ECHO Building nix-tool ...
92
+ ECHO --------------------------------------------------------------------------
93
+ cmake --build . --config %BUILD_TYPE% --target nix-tool
94
+
95
+ IF %ERRORLEVEL% == 1 (EXIT /b)
96
+
90
97
ECHO --------------------------------------------------------------------------
91
98
ECHO Testing nix ...
92
99
ECHO --------------------------------------------------------------------------
@@ -119,6 +126,8 @@ IF %ERRORLEVEL% == 1 (EXIT /b)
119
126
120
127
REM Copying required nix-mx.mex file to nix-mx root folder
121
128
COPY %NIX_MX_ROOT% \build\%BUILD_TYPE% \nix_mx.mexw* %NIX_MX_ROOT% \ /Y
129
+ REM Provide nix-tool as well for validation and content display
130
+ COPY %NIX_ROOT% \build\%BUILD_TYPE% \nix-tool.exe %NIX_MX_ROOT% \ /Y
122
131
123
132
CD %NIX_MX_ROOT%
124
133
You can’t perform that action at this time.
0 commit comments