1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at 10# 11# http://www.apache.org/licenses/LICENSE-2.0 12# 13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. 19# 20#************************************************************** 21 22 23 24$(eval $(call gb_Library_Library,vclplug_gtk)) 25 26$(eval $(call gb_Library_set_include,vclplug_gtk,\ 27 $$(INCLUDE) \ 28 -I$(SRCDIR)/vcl/inc \ 29 -I$(SRCDIR)/vcl/inc/pch \ 30 -I$(SRCDIR)/solenv/inc \ 31 -I$(OUTDIR)/inc/offuh \ 32 -I$(OUTDIR)/inc/stl \ 33 -I$(OUTDIR)/inc \ 34)) 35 36$(eval $(call gb_Library_set_cxxflags,vclplug_gtk,\ 37 $$(CXXFLAGS) \ 38 $$(GTK_CFLAGS) \ 39)) 40 41$(eval $(call gb_Library_set_defs,vclplug_gtk,\ 42 $$(DEFS) \ 43 -DVCLPLUG_GTK_IMPLEMENTATION \ 44 -DVERSION=\"$(UPD)$(LAST_MINOR)\" \ 45)) 46 47ifneq ($(ENABLE_DBUS),) 48$(eval $(call gb_Library_set_include,vclplug_gtk,\ 49 $$(INCLUDE) \ 50 $(shell pkg-config --cflags-only-I dbus-glib-1) \ 51)) 52$(eval $(call gb_Library_set_defs,vclplug_gtk,\ 53 $$(DEFS) \ 54 -DENABLE_DBUS \ 55)) 56$(eval $(call gb_Library_set_ldflags,vclplug_gtk,\ 57 $$(LDFLAGS) \ 58 $(shell pkg-config --libs dbus-glib-1)\ 59)) 60endif 61 62$(eval $(call gb_Library_set_ldflags,vclplug_gtk,\ 63 $$(LDFLAGS) \ 64 $$(GTK_LIBS) \ 65 $$(GTHREAD_LIBS) \ 66)) 67 68$(eval $(call gb_Library_add_linked_libs,vclplug_gtk,\ 69 vclplug_gen \ 70 vcl \ 71 tl \ 72 utl \ 73 sot \ 74 ucbhelper \ 75 basegfx \ 76 comphelper \ 77 cppuhelper \ 78 icuuc \ 79 icule \ 80 i18nisolang1 \ 81 i18npaper \ 82 i18nutil \ 83 jvmaccess \ 84 stl \ 85 cppu \ 86 sal \ 87 vos3 \ 88 X11 \ 89 Xext \ 90 SM \ 91 ICE \ 92 $(gb_STDLIBS) \ 93)) 94 95$(eval $(call gb_Library_add_exception_objects,vclplug_gtk,\ 96 vcl/unx/gtk/a11y/atkaction \ 97 vcl/unx/gtk/a11y/atkbridge \ 98 vcl/unx/gtk/a11y/atkcomponent \ 99 vcl/unx/gtk/a11y/atkeditabletext \ 100 vcl/unx/gtk/a11y/atkfactory \ 101 vcl/unx/gtk/a11y/atkhypertext \ 102 vcl/unx/gtk/a11y/atkimage \ 103 vcl/unx/gtk/a11y/atklistener \ 104 vcl/unx/gtk/a11y/atkregistry \ 105 vcl/unx/gtk/a11y/atkselection \ 106 vcl/unx/gtk/a11y/atktable \ 107 vcl/unx/gtk/a11y/atktextattributes \ 108 vcl/unx/gtk/a11y/atktext \ 109 vcl/unx/gtk/a11y/atkutil \ 110 vcl/unx/gtk/a11y/atkvalue \ 111 vcl/unx/gtk/a11y/atkwindow \ 112 vcl/unx/gtk/a11y/atkwrapper \ 113 vcl/unx/gtk/app/gtkdata \ 114 vcl/unx/gtk/app/gtkinst \ 115 vcl/unx/gtk/app/gtksys \ 116 vcl/unx/gtk/gdi/salnativewidgets-gtk \ 117 vcl/unx/gtk/window/gtkframe \ 118 vcl/unx/gtk/window/gtkobject \ 119)) 120 121ifeq ($(OS),LINUX) 122$(eval $(call gb_Library_add_linked_libs,vclplug_gtk,\ 123 dl \ 124 m \ 125 pthread \ 126)) 127endif 128# vim: set noet sw=4 ts=4: 129