-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathconfigure.bat
41 lines (30 loc) · 1.08 KB
/
configure.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@echo off
rem Batch file for configuring SigLib DSP Library
if "%SIGLIB_PATH%"=="" (
echo To use SigLib, please add the following to your system environment variables and change the SIGLIB_PATH to match your installation lcoation:
echo SIGLIB_PATH=%%HOMEPATH%%\Development\siglib
echo.
)else (
echo SIGLIB_PATH SET!
%SIGLIB_PATH%\SetEnv.bat
cd %SIGLIB_PATH%\gnuplot_c\src
call mbuildlib.bat
cd %SIGLIB_PATH%\src
call remakeMSVC.bat
cd %SIGLIB_PATH%
echo SigLib Configured Correctly
echo You do not need to run this script again
echo.
echo Please ensure Gnuplot is correctly installed: http://www.gnuplot.info/
echo SigLib is tested with Gnuplot v5.2 patchlevel 8
echo Gnuplot installation can be tested with the following command:
echo gnuplot --version
echo.
echo To use SigLib from a Visual Studio Command Prompt, execute the following command:
echo cd %%SIGLIB_PATH%%\SetEnv.bat
echo.
echo To build and run one of the examples:
echo cd %%SIGLIB_PATH%%\Examples\CExamples
echo mbr.sh analytic
echo.
)