Remove QMake buildsystem

This commit is contained in:
Frank Osterfeld 2012-05-07 16:45:21 +02:00
parent d18fb533f5
commit 5077dfac3d
3 changed files with 0 additions and 42 deletions

26
lib.pro
View File

@ -1,26 +0,0 @@
TEMPLATE = lib
TARGET = qtkeychain
DEPENDPATH += .
INCLUDEPATH += .
HEADERS += keychain.h \
keychain_p.h
SOURCES += keychain.cpp
DEFINES += QKEYCHAIN_BUILD_QKEYCHAIN_LIB
macx {
LIBS += -framework Security -framework CoreFoundation
SOURCES += keychain_mac.cpp
}
unix:!macx {
SOURCES += keychain_dbus.cpp
}
win32 {
DESTDIR = lib
DLLDESTDIR = lib
LIBS += -lCrypt32
SOURCES += keychain_win.cpp
}

View File

@ -1,4 +0,0 @@
TEMPLATE = subdirs
SUBDIRS += lib.pro testclient.pro
CONFIG += ordered

View File

@ -1,12 +0,0 @@
TEMPLATE = app
TARGET = testclient
SOURCES += testclient.cpp
QT -= gui
CONFIG += console
macx:CONFIG -= app_bundle
win32:LIBS += -Llib -lqtkeychain
unix:LIBS += -L$$OUT_PWD -lqtkeychain