diff options
Diffstat (limited to 'recipe/bld.bat')
-rw-r--r-- | recipe/bld.bat | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/recipe/bld.bat b/recipe/bld.bat new file mode 100644 index 0000000..af5ca40 --- /dev/null +++ b/recipe/bld.bat @@ -0,0 +1,15 @@ + +IF NOT DEFINED CIL_VERSION ( +ECHO CIL_VERSION Not Defined. +exit 1 +) + +ROBOCOPY /E "%RECIPE_DIR%\.." "%SRC_DIR%" /XD .git /XD Wrappers\Python\build + +mkdir "%SRC_DIR%\build_framework" + +cd "%SRC_DIR%\build_framework" +cmake -G "NMake Makefiles" %RECIPE_DIR%\..\ -DCONDA_BUILD=ON -DCMAKE_BUILD_TYPE="Release" -DLIBRARY_LIB=%CONDA_PREFIX%\lib -DLIBRARY_INC=%CONDA_PREFIX% -DCMAKE_INSTALL_PREFIX=%PREFIX% + +nmake install +if errorlevel 1 exit 1 |