~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Mod/MeshPart/Gui/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Teemu Ikonen
  • Date: 2009-07-16 18:37:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090716183741-oww9kcxqrk991i1n
Tags: upstream-0.8.2237
ImportĀ upstreamĀ versionĀ 0.8.2237

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS=Resources
 
2
 
 
3
lib_LTLIBRARIES=libMeshPartGui.la MeshPartGui.la
 
4
 
 
5
libMeshPartGui_la_SOURCES=\
 
6
                AppMeshPartGuiPy.cpp \
 
7
                Command.cpp \
 
8
                PreCompiled.cpp \
 
9
                PreCompiled.h \
 
10
                Workbench.cpp \
 
11
                Workbench.h
 
12
 
 
13
# the library search path.
 
14
libMeshPartGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App \
 
15
        -L../../Mesh/App -L../../Part/App $(QT_LIBS) $(GL_LIBS) $(all_libraries) \
 
16
        -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
 
17
 
 
18
libMeshPartGui_la_CPPFLAGS = -DTEMPLATEDIR=\"$(datarootdir)/Templates\" \
 
19
        -DMeshPartAppExport= -DMeshPartGuiExport=
 
20
 
 
21
libMeshPartGui_la_LIBADD   = \
 
22
                @BOOST_SYSTEM_LIB@ \
 
23
                -l@PYTHON_LIB@ \
 
24
                -lxerces-c \
 
25
                -lFreeCADBase \
 
26
                -lFreeCADApp \
 
27
                -lFreeCADGui \
 
28
                -lMesh \
 
29
                -lPart \
 
30
                -lMeshPart
 
31
 
 
32
#--------------------------------------------------------------------------------------
 
33
# Loader of libMeshPartGui
 
34
 
 
35
MeshPartGui_la_SOURCES=\
 
36
                AppMeshPartGui.cpp
 
37
 
 
38
# the library search path.
 
39
MeshPartGui_la_LDFLAGS = $(libMeshPartGui_la_LDFLAGS) -module -avoid-version
 
40
MeshPartGui_la_CPPFLAGS = $(libMeshPartGui_la_CPPFLAGS)
 
41
 
 
42
MeshPartGui_la_LIBADD   = \
 
43
                $(libMeshPartGui_la_LIBADD) \
 
44
                Resources/libResources.la \
 
45
                -lMeshPartGui
 
46
 
 
47
#--------------------------------------------------------------------------------------
 
48
 
 
49
# rule for Qt MetaObject Compiler:
 
50
moc_%.cpp: %.h
 
51
        $(QT_MOC) $< -o $(@F)
 
52
 
 
53
# rule for Qt MetaObject Compiler:
 
54
%.moc: %.h
 
55
        $(QT_MOC) $< -o $(@F)
 
56
 
 
57
# rules for Qt User Interface Compiler:
 
58
ui_%.h: %.ui
 
59
        $(QT_UIC) $< -o $(@F)
 
60
 
 
61
# rules for Qt Resource Compiler:
 
62
qrc_%.cpp: %.qrc
 
63
        $(QT_RCC) -name $(*F) $< -o $(@F)
 
64
 
 
65
# set the include path found by configure
 
66
INCLUDES= -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS)
 
67
 
 
68
 
 
69
libdir = $(prefix)/Mod/MeshPart
 
70
 
 
71
CLEANFILES = $(BUILT_SOURCES)
 
72
 
 
73
EXTRA_DIST = \
 
74
                CMakeLists.txt
 
75