# HG changeset patch # User Chris Cannam # Date 1364225404 0 # Node ID 3ee1bd4b0995d4ddd3532e9a817303ed71333919 # Parent 518b2cbd6bf2d8d815934b6559cc439ce578c6a0 Define fixed set of dependencies, on Windows, if no config available diff -r 518b2cbd6bf2 -r 3ee1bd4b0995 svapp.pro --- a/svapp.pro Mon Mar 25 14:38:18 2013 +0000 +++ b/svapp.pro Mon Mar 25 15:30:04 2013 +0000 @@ -1,7 +1,14 @@ TEMPLATE = lib -include(config.pri) +exists(config.pri) { + include(config.pri) +} +win* { + !exists(config.pri) { + DEFINES += HAVE_PORTAUDIO_2_0 + } +} CONFIG += staticlib qt thread warn_on stl rtti exceptions QT += network xml gui widgets