Update changelog.
[deb_x265.git] / build / icl64 / make-makefile.bat
1 @echo off
2 ::
3 :: run this batch file to create an Intel C++ 2013 NMake makefile for this project.
4 :: See the cmake documentation for other generator targets
5 ::
6 if not "%ICPP_COMPILER13%" == "" ( set ICL="%ICPP_COMPILER13" )
7 if not "%ICPP_COMPILER14%" == "" ( set ICL="%ICPP_COMPILER14" )
8 if "%ICL%" == "" (
9 msg "%username%" "Intel C++ 2013 not detected"
10 pause
11 exit 1
12 )
13 call "%ICL%\bin\compilervars.bat" intel64
14 set CC=icl
15 set CXX=icl
16 cmake -G "NMake Makefiles" ..\..\source && cmake-gui ..\..\source
17 pause