Skip to content
Snippets Groups Projects

Adding a script for Windows to build all packages corresponding to the...

Merged juan rodriguez-carvajal requested to merge testing-fpm into master
1 file
+ 59
0
Compare changes
  • Side-by-side
  • Inline
+ 59
0
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo START BUILDING EVERYTHING
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo ..............................................................................
echo ..............................................................................
echo ... Building CrysFML and corresponding executables with gfortran in debug mode
echo ..............................................................................
echo ..............................................................................
call make_CrysFML_fpm gfortran debug
echo ................................................................................
echo ................................................................................
echo ... Building CrysFML and corresponding executables with gfortran in release mode
echo ................................................................................
echo ................................................................................
call make_CrysFML_fpm gfortran
echo ............................................................................
echo ............................................................................
echo ... Building CrysFML and corresponding executables with ifort in debug mode
echo ............................................................................
echo ............................................................................
call make_CrysFML_fpm ifort debug
echo ............................................................................
echo ............................................................................
echo ... Building CrysFML and corresponding executables with ifort in release mode
echo ............................................................................
echo ............................................................................
call make_CrysFML_fpm ifort
echo .....................................................................................
echo .....................................................................................
echo ..Building CrysFML and corresponding executables with ifort/winteracter in debug mode
echo .....................................................................................
echo .....................................................................................
call make_CrysFML_fpm ifort debug win
echo .....................................................................................
echo .....................................................................................
echo Building CrysFML and corresponding executables with ifort/winteracter in release mode
echo .....................................................................................
echo .....................................................................................
call make_CrysFML_fpm ifort win
rem For the moment ifx has some problems due to not yet implemented features in ifx
echo ............................................................................
echo ............................................................................
echo ... Building CrysFML and corresponding executables with ifx in debug mode
echo ............................................................................
echo ............................................................................
call make_CrysFML_fpm ifx debug
echo ............................................................................
echo ............................................................................
echo ... Building CrysFML and corresponding executables with ifx in release mode
echo ............................................................................
echo ............................................................................
call make_CrysFML_fpm ifx
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo STOP BUILDING EVERYTHING
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Loading