added QMAKE_CC = g++ to win32 section in .pro file

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1052 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-02-24 21:42:59 +00:00
parent f018bf0f85
commit 580123a232

View File

@ -31,19 +31,19 @@ win32-x-g++ {
}
################################# Windows ##########################################
win32 {
OBJECTS_DIR = temp/obj
win32 {
QMAKE_CC = g++
OBJECTS_DIR = temp/obj
MOC_DIR = temp/moc
DEFINES = WINDOWS_SYS WIN32
DEFINES = WINDOWS_SYS WIN32 STATICLIB
DESTDIR = lib
#SSL_DIR = ../../../../openssl-0.9.7g-xpgp-0.1c/include
#UPNPC_DIR = ../../../../miniupnpc-1.0
SSL_DIR = ../../../../openssl-0.9.7g-xpgp-0.1c/include
UPNPC_DIR = ../../../../miniupnpc-1.0
PTHREADS_DIR = ../../../../pthreads-w32-2-8-0-release
ZLIB_DIR = ../../../../zlib-1.2.3
ZLIB_DIR = ../../../../zlib-1.2.3
#INCLUDEPATH += . $${SSL_DIR} $${UPNPC_DIR} $${PTHREADS_DIR} $${ZLIB_DIR}
INCLUDEPATH += . $${PTHREADS_DIR} $${ZLIB_DIR}
INCLUDEPATH += . $${SSL_DIR} $${UPNPC_DIR} $${PTHREADS_DIR} $${ZLIB_DIR}
}
################################### COMMON stuff ##################################