tubes: pull in tubes headers and linkage
This commit is contained in:
parent
5bcb73a594
commit
1b601608ec
3 changed files with 61 additions and 0 deletions
|
@ -42,6 +42,26 @@ $(eval $(call gb_Library_add_defs,sc,\
|
|||
|
||||
$(eval $(call gb_Library_use_sdk_api,sc))
|
||||
|
||||
ifeq ($(ENABLE_TELEPATHY),TRUE)
|
||||
|
||||
$(eval $(call gb_Library_add_linked_libs,sc,\
|
||||
tubes \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Library_add_cxxflags,sc,\
|
||||
$$(TELEPATHY_CFLAGS) \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Library_add_libs,sc,\
|
||||
$$(TELEPATHY_LIBS) \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Library_use_externals,sc,\
|
||||
telepathy \
|
||||
))
|
||||
|
||||
endif
|
||||
|
||||
$(eval $(call gb_Library_use_libraries,sc,\
|
||||
avmedia \
|
||||
basegfx \
|
||||
|
@ -316,6 +336,7 @@ $(eval $(call gb_Library_add_exception_objects,sc,\
|
|||
sc/source/ui/cctrl/popmenu \
|
||||
sc/source/ui/cctrl/tbinsert \
|
||||
sc/source/ui/cctrl/tbzoomsliderctrl \
|
||||
sc/source/ui/collab/collab \
|
||||
sc/source/ui/collab/sendfunc \
|
||||
sc/source/ui/dbgui/asciiopt \
|
||||
sc/source/ui/dbgui/consdlg \
|
||||
|
|
|
@ -31,6 +31,7 @@ ifeq ($(ENABLE_TELEPATHY),TRUE)
|
|||
|
||||
$(eval $(call gb_Module_add_targets,tubes,\
|
||||
Library_tubes \
|
||||
Package_inc \
|
||||
Executable_liboapprover \
|
||||
))
|
||||
|
||||
|
|
39
tubes/Package_inc.mk
Normal file
39
tubes/Package_inc.mk
Normal file
|
@ -0,0 +1,39 @@
|
|||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License or as specified alternatively below. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# Major Contributor(s):
|
||||
# Copyright (C) 2012 Red Hat, Inc., Eike Rathke <erack@redhat.com>
|
||||
#
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# For minor contributions see the git repository.
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
||||
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
||||
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
||||
# instead of those above.
|
||||
|
||||
$(eval $(call gb_Package_Package,tubes_inc,$(SRCDIR)/tubes/inc))
|
||||
|
||||
$(eval $(call gb_Package_add_file,tubes_inc,inc/tubes/conference.hxx,tubes/conference.hxx))
|
||||
$(eval $(call gb_Package_add_file,tubes_inc,inc/tubes/constants.h,tubes/constants.h))
|
||||
$(eval $(call gb_Package_add_file,tubes_inc,inc/tubes/contact-list.hxx,tubes/contact-list.hxx))
|
||||
$(eval $(call gb_Package_add_file,tubes_inc,inc/tubes/file-transfer-helper.h,tubes/file-transfer-helper.h))
|
||||
$(eval $(call gb_Package_add_file,tubes_inc,inc/tubes/manager.hxx,tubes/manager.hxx))
|
||||
$(eval $(call gb_Package_add_file,tubes_inc,inc/tubes/packet.hxx,tubes/packet.hxx))
|
||||
$(eval $(call gb_Package_add_file,tubes_inc,inc/tubes/tubesdllapi.h,tubes/tubesdllapi.h))
|
||||
|
||||
#$(eval $(call gb_Package_add_file,tubes_inc,inc/tubes/,tubes/))
|
||||
|
||||
# vim: set noet sw=4 ts=4:
|
Loading…
Reference in a new issue