diff options
author | Chris Robinson <[email protected]> | 2013-06-24 17:40:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-06-24 17:40:41 -0700 |
commit | d984cec3a18f9a8977898ac06848b53c92fc1322 (patch) | |
tree | 7febe64880e0d45ce67d08b57af40526068c40a2 /utils | |
parent | 5c7680ec840dac78baa7781be27f8de1e85d60ab (diff) |
Properly check that Qt4 4.8+ was found
Diffstat (limited to 'utils')
-rw-r--r-- | utils/alsoft-config/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/alsoft-config/CMakeLists.txt b/utils/alsoft-config/CMakeLists.txt index 12e0ae48..511628cb 100644 --- a/utils/alsoft-config/CMakeLists.txt +++ b/utils/alsoft-config/CMakeLists.txt @@ -4,7 +4,7 @@ include_directories("${alsoft-config_BINARY_DIR}") # Need Qt 4.8.0 or newer for the iconset theme attribute to work find_package(Qt4 4.8.0 COMPONENTS QtCore QtGui) -if(QT_QTCORE_FOUND AND QT_QTGUI_FOUND) +if(QT4_FOUND) include(${QT_USE_FILE}) set(alsoft-config_SRCS main.cpp |