diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2008-04-07 23:19:50 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2008-04-07 23:19:50 (GMT) |
commit | 7d2bbfe84244031c25a9c71483f71fa95b1f29e8 (patch) | |
tree | 9dfd36735ae15fc70628ce1c28a976284db2ba54 /Source/QtDialog/QCMake.h | |
parent | 1829bed8b5dd4c1d3b622a14160d3a6706bcc16e (diff) | |
download | CMake-7d2bbfe84244031c25a9c71483f71fa95b1f29e8.zip CMake-7d2bbfe84244031c25a9c71483f71fa95b1f29e8.tar.gz CMake-7d2bbfe84244031c25a9c71483f71fa95b1f29e8.tar.bz2 |
BUG: Fix #6733. Always convert "\" to "/" in source & binary directory fields on Windows.
Diffstat (limited to 'Source/QtDialog/QCMake.h')
-rw-r--r-- | Source/QtDialog/QCMake.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/QtDialog/QCMake.h b/Source/QtDialog/QCMake.h index 89a19e9..c46aab6 100644 --- a/Source/QtDialog/QCMake.h +++ b/Source/QtDialog/QCMake.h @@ -112,6 +112,8 @@ signals: /// signal when the source directory changes (binary directory already /// containing a CMakeCache.txt file) void sourceDirChanged(const QString& dir); + /// signal when the binary directory changes + void binaryDirChanged(const QString& dir); /// signal for progress events void progressChanged(const QString& msg, float percent); /// signal when configure is done |