diff options
author | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2002-09-02 11:03:43 (GMT) |
---|---|---|
committer | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2002-09-02 11:03:43 (GMT) |
commit | 63d64d5780aa189324800e70feb6345a73b8e8a3 (patch) | |
tree | a806defdada082ed52b292f43347ad8cf3aff382 /Source/cmQTWrapUICommand.cxx | |
parent | a888ba53faad5027a5f7941971a56a959035505f (diff) | |
download | CMake-63d64d5780aa189324800e70feb6345a73b8e8a3.zip CMake-63d64d5780aa189324800e70feb6345a73b8e8a3.tar.gz CMake-63d64d5780aa189324800e70feb6345a73b8e8a3.tar.bz2 |
Define a single expected format for the values defined in every FindXXX.cmake file.
Upgrade all the QT functionality to use the new FindXXX.cmake format
Add a module for AVIFile.
Diffstat (limited to 'Source/cmQTWrapUICommand.cxx')
-rw-r--r-- | Source/cmQTWrapUICommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx index dd4e3a6..8e3827e 100644 --- a/Source/cmQTWrapUICommand.cxx +++ b/Source/cmQTWrapUICommand.cxx @@ -118,8 +118,8 @@ void cmQTWrapUICommand::FinalPass() // first we add the rules for all the .ui to .h and .cxx files size_t lastHeadersClass = m_WrapHeadersClasses.size(); std::vector<std::string> depends; - std::string uic_exe = "${QT_UIC_EXE}"; - std::string moc_exe = "${QT_MOC_EXE}"; + std::string uic_exe = "${QT_UIC_EXECUTABLE}"; + std::string moc_exe = "${QT_MOC_EXECUTABLE}"; // wrap all the .h files |