Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv6151
Modified Files:
wolfpack.pro
Log Message:
no message
Index: wolfpack.pro
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/wolfpack.pro,v
retrieving revision 1.165
retrieving revision 1.166
diff -C2 -d -r1.165 -r1.166
*** wolfpack.pro 26 Sep 2003 01:03:52 -0000 1.165
--- wolfpack.pro 26 Sep 2003 13:00:34 -0000 1.166
***************
*** 10,14 ****
TEMPLATE += app
CONFIG += qt console thread exceptions rtti
! INCLUDEPATH += lib/Python/include
OPTIONS += mysql
--- 10,14 ----
TEMPLATE += app
CONFIG += qt console thread exceptions rtti
! #INCLUDEPATH += lib/Python/include
OPTIONS += mysql
***************
*** 17,22 ****
# Common unix settings
# Lets try to figure some paths
! # MySQL includes first
contains( OPTIONS, mysql ) {
message("MySQL support specified, trying to locate required files")
--- 17,27 ----
# Common unix settings
# Lets try to figure some paths
+ message("HINT: ./configure script can simplify compilation")
! # MySQL includes first. Run configure script to initialize it.
! !isEmpty($(MYSQLINC))
! {
! INCLUDEPATH += $$(MYSQLINC)
! }
contains( OPTIONS, mysql ) {
message("MySQL support specified, trying to locate required files")
***************
*** 49,52 ****
--- 54,62 ----
LIBS += -lmysqlclient
}
+ }
+ # Python includes. Run configure script to initialize it.
+ !isEmpty($(PYTHONINC))
+ {
+ INCLUDEPATH += $$(PYTHONINC)
}
|