Changeset 9677

Show
Ignore:
Timestamp:
09/29/08 18:18:53
Author:
trondeau
Message:

builds libqtgui.so and installs is in prefix/lib for C++ applications to link against.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gnuradio/branches/developers/trondeau/qtgui/gr-qtgui/src/lib/Makefile.am

    r9624 r9677  
    6060        qtgui.py 
    6161 
     62# Build the library for Python module to link against 
    6263ourlib_LTLIBRARIES = _qtgui.la 
     64 
     65# Build the normal library for C++ apps to link against 
     66lib_LTLIBRARIES = libqtgui.la 
    6367 
    6468# These are the source files that go into the shared library 
     
    8286        qtspectrum/.moc/moc_spectrumdisplayform.cpp 
    8387 
     88libqtgui_la_SOURCES = $(_qtgui_la_SOURCES) 
     89 
    8490# magic flags 
    8591_qtgui_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version 
     92libqtgui_la_LDFLAGS = $(NO_UNDEFINED) -version-info 0:0:0 
    8693 
    8794# link the library against the c++ standard library 
    8895_qtgui_la_LIBADD =              \ 
    8996        $(PYTHON_LDFLAGS)       \ 
     97        $(GNURADIO_CORE_LA)     \ 
     98        -lstdc++                \ 
     99        $(QT_LIBS) 
     100 
     101 
     102libqtgui_la_LIBADD =            \ 
    90103        $(GNURADIO_CORE_LA)     \ 
    91104        -lstdc++                \