From c923f7d2c210dc7846767fc0ac6ece2a0d7812a8 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sat, 7 Apr 2012 23:22:08 +0200 Subject: gbuild: "use" vs. "add": Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target) --- canvas/Library_directx9canvas.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'canvas/Library_directx9canvas.mk') diff --git a/canvas/Library_directx9canvas.mk b/canvas/Library_directx9canvas.mk index 0b1da59e8770..ab9ec64a59d4 100644 --- a/canvas/Library_directx9canvas.mk +++ b/canvas/Library_directx9canvas.mk @@ -35,7 +35,7 @@ $(eval $(call gb_Library_set_include,directx9canvas,\ -I$(SRCDIR)/canvas/inc \ )) -$(eval $(call gb_Library_add_api,directx9canvas,\ +$(eval $(call gb_Library_use_api,directx9canvas,\ offapi \ udkapi \ )) @@ -46,7 +46,7 @@ $(eval $(call gb_Library_add_defs,directx9canvas,\ -UNOMINMAX \ )) -$(eval $(call gb_Library_add_linked_libs,directx9canvas,\ +$(eval $(call gb_Library_use_libraries,directx9canvas,\ cppu \ tk \ sal \ @@ -61,13 +61,13 @@ $(eval $(call gb_Library_add_linked_libs,directx9canvas,\ $(gb_STDLIBS) \ )) -$(eval $(call gb_Library_add_linked_libs,directx9canvas,\ +$(eval $(call gb_Library_use_libraries,directx9canvas,\ d3d9 \ gdi32 \ gdiplus \ )) -$(eval $(call gb_Library_add_linked_static_libs,directx9canvas,\ +$(eval $(call gb_Library_use_static_libraries,directx9canvas,\ directxcanvas \ )) -- cgit