diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-08-07 15:16:00 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-08-14 13:45:13 (GMT) |
commit | d1c0a5fce6c9adccd1abf6b41ba448976ef895d0 (patch) | |
tree | 1095826cdb36ac537cd3719fadb8761e7d4869b8 /Source/cmake.cxx | |
parent | a65011baf109fd0afe759cf3d9e7b6ab7013a805 (diff) | |
download | CMake-d1c0a5fce6c9adccd1abf6b41ba448976ef895d0.zip CMake-d1c0a5fce6c9adccd1abf6b41ba448976ef895d0.tar.gz CMake-d1c0a5fce6c9adccd1abf6b41ba448976ef895d0.tar.bz2 |
Start implementing skeleton for automoc in cmake
Alex
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 47520df..06229e0 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1578,7 +1578,8 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args) else if (args[1] == "cmake_automoc") { cmQtAutomoc automoc; - automoc.Run("target directory"); + automoc.Run(args[2].c_str()); + return 0; } // Tar files |