diff options
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/CppunitTest_cppuhelper_checkapi.mk | 5 | ||||
-rw-r--r-- | cppuhelper/CustomTarget_cppuhelper_allheaders.mk | 18 |
2 files changed, 5 insertions, 18 deletions
diff --git a/cppuhelper/CppunitTest_cppuhelper_checkapi.mk b/cppuhelper/CppunitTest_cppuhelper_checkapi.mk index 68fd0ec4bc1f..5e933d3fbe34 100644 --- a/cppuhelper/CppunitTest_cppuhelper_checkapi.mk +++ b/cppuhelper/CppunitTest_cppuhelper_checkapi.mk @@ -31,11 +31,6 @@ $(eval $(call gb_CppunitTest_add_exception_objects,cppuhelper_checkapi,\ cppuhelper/qa/checkapi/strings \ )) -$(eval $(call gb_CppunitTest_set_include,cppuhelper_checkapi,\ - $$(INCLUDE) \ - -I$(SRCDIR)/cppuhelper/inc \ -)) - $(eval $(call gb_CppunitTest_use_internal_comprehensive_api,cppuhelper_checkapi, \ cppu \ udkapi \ diff --git a/cppuhelper/CustomTarget_cppuhelper_allheaders.mk b/cppuhelper/CustomTarget_cppuhelper_allheaders.mk index a6d83d4069c7..08c8ee34a7c3 100644 --- a/cppuhelper/CustomTarget_cppuhelper_allheaders.mk +++ b/cppuhelper/CustomTarget_cppuhelper_allheaders.mk @@ -32,21 +32,13 @@ cppuhelper_allheaders_DIR := $(call gb_CustomTarget_get_workdir,cppuhelper/allhe $(call gb_CustomTarget_get_target,cppuhelper/allheaders) : \ $(cppuhelper_allheaders_DIR)/cppuhelper_allheaders.hxx -# dependency on Package_cppuheaders_odk_headers.mk should ensure this is -# updated whenever a new public header is added $(cppuhelper_allheaders_DIR)/cppuhelper_allheaders.hxx : \ - $(SRCDIR)/cppuhelper/CustomTarget_cppuhelper_allheaders.mk \ - $(SRCDIR)/cppuhelper/Package_cppuhelper_odk_headers.mk \ + $(call gb_Package_get_target,cppuhelper_odk_headers) \ | $(cppuhelper_allheaders_DIR)/.dir $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1) - printf '// Generated list of all cppuhelper/ includes\n' > $@ - $(foreach file, $(wildcard $(SRCDIR)/cppuhelper/inc/*.h) $(wildcard $(SRCDIR)/cppuhelper/inc/*.hxx) \ - $(wildcard $(SRCDIR)/cppuhelper/inc/*/*.h) $(wildcard $(SRCDIR)/cppuhelper/inc/*/*.hxx) \ - $(wildcard $(SRCDIR)/cppuhelper/inc/*/*/*.h) $(wildcard $(SRCDIR)/cppuhelper/inc/*/*/*.hxx) \ - $(wildcard $(SRCDIR)/cppuhelper/inc/*/*/*/*.h) $(wildcard $(SRCDIR)/cppuhelper/inc/*/*/*/*.hxx), \ - $(if $(findstring /win32/, $(file)), printf '#ifdef WNT\n' >> $@ &&) \ - printf '#include <%s>\n' $(subst $(SRCDIR)/cppuhelper/inc/,,$(file)) >> $@ && \ - $(if $(findstring /win32/, $(file)), printf '#endif // WNT\n' >> $@ &&) \ - ) : + printf '// Generated list of cppuhelper includes\n' > $@ \ + $(foreach file,$(shell cat $<),\ + && printf '#include <%s>\n' $(subst $(INSTDIR)/$(gb_Package_SDKDIRNAME)/include/,,$(file)) >> $@ \ + ) # vim: set noet sw=4 ts=4: |