1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
@echo off
REM ======================================================
REM Generic Python Installer build script
REM ------------------------------------------
REM Licensed under the terms of the BSD 3-Clause
REM (see cdl/LICENSE for details)
REM ======================================================
call %~dp0utils GetScriptPath SCRIPTPATH
call %FUNC% GetLibName LIBNAME
call %FUNC% SetPythonPath
call %FUNC% UsePython
call %FUNC% GetVersion VERSION
call %FUNC% GetModName MODNAME
call %FUNC% GetCDLProjectPath CDL_MODULE_PATH
echo Modname=%MODNAME%
echo LibName=%LIBNAME%
echo LibVersion=%VERSION%
echo CDLModulePath=%CDL_MODULE_PATH%
call %FUNC% EndOfScript
|