cppcheck/cmake/findDependencies.cmake

11 lines
264 B
CMake
Raw Normal View History

2015-02-13 19:00:14 +01:00
find_package(Qt4 4.6.1 COMPONENTS QtCore QtGui)
if (HAVE_RULES)
find_library(PCRE pcre)
if (NOT PCRE)
message(FATAL_ERROR "pcre dependency for RULES has not been found")
endif()
endif()
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC OFF)