1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
// -*- MPC -*-
// $Id: ace_qt.mpb 93117 2011-01-20 12:11:28Z mcorino $
project: qt {
// Depends on configuration from include/makeinclude/platform_*.GNU
verbatim(gnuace,local) {
CPPFLAGS += $(PLATFORM_QT_CPPFLAGS)
LIBS += $(PLATFORM_QT_LIBS)
LDFLAGS += $(PLATFORM_QT_LDFLAGS)
}
specific(automake) {
includes -= $(QTDIR)/include
libpaths -= $(QTDIR)/lib
macros -= QT_THREAD_SUPPORT
lit_libs -= qt-mt$(QT_VERSION)
compile_flags += $(ACE_QT_CPPFLAGS)
linkflags += $(ACE_QT_LDFLAGS)
pure_libs += $(ACE_QT_LIBS)
}
specific(prop:microsoft) {
lit_libs -= qt-mt$(QT_VERSION)
pure_libs += $(PLATFORM_QT_LIBS)
}
}
|