summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2013-04-13 08:17:09 +0200
committerDavid Tardon <dtardon@redhat.com>2013-04-13 09:26:19 +0200
commit71e52f37ac87256f81c8da1c66e858df0fa6fe8c (patch)
tree476c6a7a1a17d47bd57051fb2baeb05459fc81b5 /sal
parent6aca2a3d0eac2c01e487e15ba599f8237b9eef61 (diff)
simplify generation of *_allheaders.hxx
There are some differences in the generated headers: cppu_allheaders.hxx now explicitly includes #include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/genfunc.h> #include <com/sun/star/uno/genfunc.hxx> #include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/Type.h> #include <com/sun/star/uno/Type.hxx> sal_allheaders.hxx now does not (explicitly) include #include <cppunittester/protectorfactory.hxx> #include <internal/rtllifecycle.h> #include <osl/detail/android-bootstrap.h> #include <osl/detail/component-mapping.h> #include <osl/detail/file.h> #include <osl/detail/ios-bootstrap.h> #include <pch/precompiled_sal.hxx> Change-Id: Ide3c708ac66f23b360b8e130790f8fa8f1911082
Diffstat (limited to 'sal')
-rw-r--r--sal/CppunitTest_sal_checkapi.mk5
-rw-r--r--sal/CustomTarget_sal_allheaders.mk27
2 files changed, 11 insertions, 21 deletions
diff --git a/sal/CppunitTest_sal_checkapi.mk b/sal/CppunitTest_sal_checkapi.mk
index b21f1ecbd974..4feec9b2911d 100644
--- a/sal/CppunitTest_sal_checkapi.mk
+++ b/sal/CppunitTest_sal_checkapi.mk
@@ -31,11 +31,6 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sal_checkapi,\
sal/qa/checkapi/strings \
))
-$(eval $(call gb_CppunitTest_set_include,sal_checkapi,\
- $$(INCLUDE) \
- -I$(SRCDIR)/sal/inc \
-))
-
$(eval $(call gb_CppunitTest_use_external,sal_checkapi,boost_headers))
# strings.cxx includes generated strings.hxx
diff --git a/sal/CustomTarget_sal_allheaders.mk b/sal/CustomTarget_sal_allheaders.mk
index 3beeb299093a..808f54feee3f 100644
--- a/sal/CustomTarget_sal_allheaders.mk
+++ b/sal/CustomTarget_sal_allheaders.mk
@@ -32,23 +32,18 @@ sal_allheaders_DIR := $(call gb_CustomTarget_get_workdir,sal/allheaders)
$(call gb_CustomTarget_get_target,sal/allheaders) : \
$(sal_allheaders_DIR)/sal_allheaders.hxx
-# dependency on Package_inc.mk should ensure this is updated whenever a new public header is added
-$(sal_allheaders_DIR)/sal_allheaders.hxx : $(SRCDIR)/sal/CustomTarget_sal_allheaders.mk \
- $(SRCDIR)/sal/Package_sal_odk_headers.mk \
- $(SRCDIR)/sal/Package_inc.mk \
+$(sal_allheaders_DIR)/sal_allheaders.hxx : \
+ $(call gb_Package_get_target,sal_odk_headers) \
| $(sal_allheaders_DIR)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1)
- printf '// Generated list of all sal/ includes\n' > $@
- printf '#ifdef WNT\n' >> $@
- printf '#include <windows.h>\n' >> $@
- printf '#endif\n' >> $@
- $(foreach file, $(wildcard $(SRCDIR)/sal/inc/*.h) $(wildcard $(SRCDIR)/sal/inc/*.hxx) \
- $(wildcard $(SRCDIR)/sal/inc/*/*.h) $(wildcard $(SRCDIR)/sal/inc/*/*.hxx) \
- $(wildcard $(SRCDIR)/sal/inc/*/*/*.h) $(wildcard $(SRCDIR)/sal/inc/*/*/*.hxx) \
- $(wildcard $(SRCDIR)/sal/inc/*/*/*/*.h) $(wildcard $(SRCDIR)/sal/inc/*/*/*/*.hxx), \
- $(if $(findstring /win32/, $(file)), printf '#ifdef WNT\n' >> $@ &&) \
- printf '#include <%s>\n' $(subst $(SRCDIR)/sal/inc/,,$(file)) >> $@ && \
- $(if $(findstring /win32/, $(file)), printf '#endif // WNT\n' >> $@ &&) \
- ) :
+ printf '// Generated list of sal includes\n' > $@ && \
+ printf '#ifdef WNT\n' >> $@ && \
+ printf '#include <windows.h>\n' >> $@ && \
+ printf '#endif\n' >> $@ \
+ $(foreach file,$(shell cat $^),\
+ $(if $(findstring /win32/,$(file)),&& printf '#ifdef WNT\n' >> $@) \
+ && printf '#include <%s>\n' $(subst $(INSTDIR)/$(gb_Package_SDKDIRNAME)/include/,,$(file)) >> $@ \
+ $(if $(findstring /win32/,$(file)),&& printf '#endif // WNT\n' >> $@) \
+ )
# vim: set noet sw=4 ts=4: