summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/iaccessible2/idl
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@theqtcompany.com>2015-01-26 16:56:34 +0100
committerJan Arve Sæther <jan-arve.saether@theqtcompany.com>2015-02-04 14:59:03 +0000
commit3f431e279aab16465496cc0de03a1af874c1ce65 (patch)
tree90e5bf97ae926f7ffad7a05609783d885929d537 /src/3rdparty/iaccessible2/idl
parent37e7c3afbc26d547daf94655a4dff1dfb59e5545 (diff)
Do not compile in dlldata.c or ia2_api_all_c.c
These files are only required for a COM server, but since the IAccessible2Proxy will actually be the effective server (inside our process). We just have to make sure we respond to the correct events, and reimplement the virtual functions as required. This is already done, so these files can be removed. Task-number: QTBUG-30838 Task-number: QTBUG-28645 Change-Id: Ic95101945bad263a6da63c08b3e47cc0c9d5734a Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com> Reviewed-by: Jan Arve Sæther <jan-arve.saether@theqtcompany.com> Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
Diffstat (limited to 'src/3rdparty/iaccessible2/idl')
-rw-r--r--src/3rdparty/iaccessible2/idl/Makefile12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/3rdparty/iaccessible2/idl/Makefile b/src/3rdparty/iaccessible2/idl/Makefile
index e186b5ab54..e3a1d5e4a1 100644
--- a/src/3rdparty/iaccessible2/idl/Makefile
+++ b/src/3rdparty/iaccessible2/idl/Makefile
@@ -1,21 +1,17 @@
MIDL = midl
-MIDL_OPTS = /out ..\generated
+MIDL_OPTS = /dlldata NUL /proxy NUL /notlb /out ..\generated
first: all
all: x86 amd64
-MIDL_OPTS = /out ..\generated\x86 /env win32
-
x86:
- -del ..\generated\x86\dlldata.c
-md ..\generated\x86
- $(MIDL) $(MIDL_OPTS) ia2_api_all.idl
+ $(MIDL) $(MIDL_OPTS)\x86 /env win32 ia2_api_all.idl
-MIDL_OPTS = /out ..\generated\amd64 /env amd64
amd64:
- -del ..\generated\amd64\dlldata.c
-md ..\generated\amd64
- $(MIDL) $(MIDL_OPTS) ia2_api_all.idl
+ $(MIDL) $(MIDL_OPTS)\amd64 /env amd64 ia2_api_all.idl
+