diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2009-08-14 07:30:55 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-08-14 08:58:12 (GMT) |
commit | c18f694aad6f2f7b743f42be255f83abb8f4a196 (patch) | |
tree | 004b5182b188613272f055458d173d0de2ec80a2 /src/script/script.pro | |
parent | daf710258b1a7333a0aa54860474f6cea5829061 (diff) | |
download | Qt-c18f694aad6f2f7b743f42be255f83abb8f4a196.zip Qt-c18f694aad6f2f7b743f42be255f83abb8f4a196.tar.gz Qt-c18f694aad6f2f7b743f42be255f83abb8f4a196.tar.bz2 |
Fix inclusions of "utils/qscriptdate_p.h" with msvc
Don't rely on the current working directory being src/script, as that does
not appear to be the case when building with .vcproj files. Instead add
src/script to the INCLUDEPATH, so that the above inclusion works.
Diffstat (limited to 'src/script/script.pro')
-rw-r--r-- | src/script/script.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script/script.pro b/src/script/script.pro index 2c13ad3..c5d4647 100644 --- a/src/script/script.pro +++ b/src/script/script.pro @@ -53,5 +53,7 @@ DEFINES += WTF_USE_JAVASCRIPTCORE_BINDINGS=1 DEFINES += WTF_CHANGES=1 DEFINES += NDEBUG +INCLUDEPATH += $$PWD + include(script.pri) |