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

« back to all changes in this revision

Viewing changes to src/Main/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2010-01-11 08:48:33 UTC
  • mfrom: (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100111084833-4g9vgdqbkw8u34zb
Tags: 0.9.2646.5-1
* New upstream version (closes: #561696).
* Added swig to Build-Depends (closes: #563523, #563772).
* Removed python-opencv from Build-Depends and Recommends (closes: #560768).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
bin_PROGRAMS=FreeCAD FreeCADCmd
2
 
lib_LTLIBRARIES=FreeCAD.la
 
2
lib_LTLIBRARIES=FreeCAD.la FreeCADGui.la
3
3
 
4
4
#--------------------------------------------------------------------------------------
5
5
FreeCAD_SOURCES= \
38
38
        -l@PYTHON_LIB@ \
39
39
        -lFreeCADBase \
40
40
        -lFreeCADApp
 
41
#--------------------------------------------------------------------------------------
 
42
FreeCADGui_la_SOURCES= \
 
43
        FreeCADGuiPy.cpp
 
44
 
 
45
# the library search path.
 
46
FreeCADGui_la_LDFLAGS = -L../Base -L../App -L../Gui $(QT_LIBS) \
 
47
                $(sim_ac_coin_ldflags) $(sim_ac_coin_libs) \
 
48
                $(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
 
49
                $(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@ -module -avoid-version
 
50
 
 
51
FreeCADGui_la_LIBADD=\
 
52
        -ldl \
 
53
        -l@PYTHON_LIB@ \
 
54
        -lFreeCADBase \
 
55
        -lFreeCADApp \
 
56
        -lFreeCADGui
41
57
 
42
58
#--------------------------------------------------------------------------------------
43
59
 
44
60
# set the include path found by configure
45
 
INCLUDES= $(all_includes) -I$(top_srcdir)/src $(QT_CXXFLAGS)
 
61
AM_CXXFLAGS = -I$(top_srcdir)/src $(QT_CXXFLAGS) $(all_includes)
46
62
 
47
63
EXTRA_DIST = \
48
64
                res/FreeCAD.exe.manifest \
50
66
                freecad.rc \
51
67
                CMakeLists.txt \
52
68
                icon.ico
 
69