author | kergoth <kergoth> | 2003-01-24 01:29:06 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-24 01:29:06 (UTC) |
commit | 039367f738688f9484a487db8720a5bd2ad5878f (patch) (side-by-side diff) | |
tree | 3ad1716b648f54cf63b91358bad5d072938f7b6a /libsql | |
parent | a30140aaac1c0144c93a6fc3b1085e78612b94b1 (diff) | |
download | opie-039367f738688f9484a487db8720a5bd2ad5878f.zip opie-039367f738688f9484a487db8720a5bd2ad5878f.tar.gz opie-039367f738688f9484a487db8720a5bd2ad5878f.tar.bz2 |
Sorry about the flood on the cvs ml list, but this uses OPIEDIR to locate include.pro rather than a relative path.. then you dont have to alter the .pro when restructuring cvs.
-rw-r--r-- | libsql/libopiesql.pro | 2 | ||||
-rw-r--r-- | libsql/test/spaltenweise.pro | 2 | ||||
-rw-r--r-- | libsql/test/test.pro | 2 | ||||
-rw-r--r-- | libsql/test/zeilenweise.pro | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libsql/libopiesql.pro b/libsql/libopiesql.pro index 4fc6cc7..75b9c7e 100644 --- a/libsql/libopiesql.pro +++ b/libsql/libopiesql.pro @@ -19,13 +19,13 @@ SOURCES = osqlbackend.cpp \ osqlbackendmanager.cpp \ osqlitedriver.cpp TARGET = opiesql INCLUDEPATH += $(OPIEDIR)/include DESTDIR = $(OPIEDIR)/lib$(PROJMAK) LIBS += -lsqlite #VERSION = 1.0.0 -include ( ../include.pro ) +include ( $(OPIEDIR)/include.pro ) diff --git a/libsql/test/spaltenweise.pro b/libsql/test/spaltenweise.pro index af68407..f54fada 100644 --- a/libsql/test/spaltenweise.pro +++ b/libsql/test/spaltenweise.pro @@ -1,13 +1,13 @@ TEMPLATE = app CONFIG = qt warn_on release HEADERS = SOURCES = spaltenweise.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include LIBS += -lqpe -lopiesql TARGET = spaltenweise -include ( ../../include.pro ) +include ( $(OPIEDIR)/include.pro ) diff --git a/libsql/test/test.pro b/libsql/test/test.pro index d756189..83ecb44 100644 --- a/libsql/test/test.pro +++ b/libsql/test/test.pro @@ -1,13 +1,13 @@ TEMPLATE = app CONFIG = qt warn_on release HEADERS = SOURCES = main.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include LIBS += -lqpe -lopiesql TARGET = sqltest -include ( ../../include.pro ) +include ( $(OPIEDIR)/include.pro ) diff --git a/libsql/test/zeilenweise.pro b/libsql/test/zeilenweise.pro index 3e69897..e5cfcc7 100644 --- a/libsql/test/zeilenweise.pro +++ b/libsql/test/zeilenweise.pro @@ -1,13 +1,13 @@ TEMPLATE = app CONFIG = qt warn_on release HEADERS = SOURCES = zeilenweise.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include LIBS += -lqpe -lopiesql TARGET = zeilenweise -include ( ../../include.pro ) +include ( $(OPIEDIR)/include.pro ) |