* Pass /no_def_idir to midl, to search only in the include folders that we specify (through /I).

svn path=/trunk/; revision=56275
This commit is contained in:
Amine Khaldi 2012-03-29 13:24:26 +00:00
parent fe26e5872f
commit bf85e78307

View file

@ -10,11 +10,11 @@ if(MSVC)
set(IDL_PROXY_ARG /proxy)
set(IDL_INTERFACE_ARG /iid)
if(ARCH MATCHES i386)
set(IDL_FLAGS /nologo /win32)
set(IDL_FLAGS /nologo /win32 /no_def_idir)
elseif(ARCH MATCHES amd64)
set(IDL_FLAGS /nologo /amd64)
set(IDL_FLAGS /nologo /amd64 /no_def_idir)
else()
set(IDL_FLAGS /nologo)
set(IDL_FLAGS /nologo /no_def_idir)
endif()
set(IDL_DEPENDS "")
else()