diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-08-28 09:22:17 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-08-28 09:24:55 (GMT) |
commit | 325214900ba14ebb94ba43fbd61dea4bef37d5e5 (patch) | |
tree | 1dcabbd6380bc8a0020f21d7f049df3d598a14f5 /Tests | |
parent | f32e7957b4f6cb57e396ec018947d46420072671 (diff) | |
download | CMake-325214900ba14ebb94ba43fbd61dea4bef37d5e5.zip CMake-325214900ba14ebb94ba43fbd61dea4bef37d5e5.tar.gz CMake-325214900ba14ebb94ba43fbd61dea4bef37d5e5.tar.bz2 |
Fix casing of 'Qt' in docs, comments and user-visible strings.
QT (cue-tea) is Apple QuickTime.
Qt (cute) is the C++ framework.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Wrapping/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tests/Wrapping/CMakeLists.txt b/Tests/Wrapping/CMakeLists.txt index 22233df..58e9c32 100644 --- a/Tests/Wrapping/CMakeLists.txt +++ b/Tests/Wrapping/CMakeLists.txt @@ -40,7 +40,7 @@ endif() set(WRAP ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/Wrap${EXE_EXT}) # -# QT Wrappers +# Qt Wrappers # set (QT_WRAP_CPP "On") @@ -48,7 +48,7 @@ set (QT_MOC_EXE "echo") include( FindQt3 ) if (QT_FOUND AND QT_WRAP_UI) - message("found qt 3 test it...") + message("found Qt 3 test it...") include_directories( ${QT_INCLUDE_DIR} ) include_directories( ${CMAKE_CURRENT_BINARY_DIR} ) @@ -67,8 +67,8 @@ if (QT_FOUND AND QT_WRAP_UI) qt_wrap_ui (myqtlib QTUI_H_SRCS QTUI_S_SRCS ${QTUI_SRCS}) qt_wrap_cpp (myqtlib QT_MOC_SRCS ${SRCS} vtkTestMoc.h) - message("QT files are ${QTUI_S_SRCS}") - message("QT other files are ${QTUI_H_SRCS}") + message("Qt files are ${QTUI_S_SRCS}") + message("Qt other files are ${QTUI_H_SRCS}") add_definitions(${QT_DEFINITIONS}) add_library(myqtlib ${QTUI_S_SRCS} ${QT_MOC_SRCS}) add_executable (qtwrapping qtwrappingmain.cxx) |