Changeset 700:831f58b0ddf3 in qutecom-2.2


Ignore:
Timestamp:
Jul 9, 2011 9:41:27 PM (23 months ago)
Author:
laurent
Branch:
default
Tags:
tip
Message:

add fatal error is qt webkit is not installed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libs/3rdparty/qt4/CMakeLists.txt

    r633 r700  
    2121 
    2222if (CMAKE_BUILD_TYPE MATCHES Debug) 
     23        if(NOT QT_QTWEBKIT_LIBRARY_DEBUG) 
     24                message(FATAL_ERROR "Qt webkit debug is not installed") 
     25        endif() 
     26         
    2327        ow_add_public_libraries( 
    2428                ${QT_QTCORE_LIBRARY_DEBUG} 
     
    7074        endif (UNIX) 
    7175else (CMAKE_BUILD_TYPE MATCHES Debug) 
     76        if(NOT QT_QTWEBKIT_LIBRARY) 
     77                message(FATAL_ERROR "Qt webkit is not installed") 
     78        endif() 
    7279        ow_add_public_libraries( 
    7380                ${QT_QTCORE_LIBRARY_RELEASE} 
Note: See TracChangeset for help on using the changeset viewer.