https://github.com/root-project/root
Raw File
Tip revision: 37ca4d688fd51a81467c54f04626495acb965edd authored by Axel Naumann on 23 August 2018, 14:57:30 UTC
Update ROOT version files to v6.14/04.
Tip revision: 37ca4d6
CMakeLists.txt
############################################################################
# CMakeLists.txt file for building ROOT gui/qtroot package
# @author Pere Mato, CERN
############################################################################

if(fail-on-missing)
  set(QT_REQUIRED REQUIRED)
endif()

find_package(Qt4 4.8 COMPONENTS QtCore QtGui ${QT_REQUIRED})

if(NOT QT4_FOUND)
  message(STATUS "Qt4 not found. Switching off qt option")
  set(qt OFF CACHE BOOL "" FORCE)
  return()
endif()

include(${QT_USE_FILE})

ROOT_STANDARD_LIBRARY_PACKAGE(QtRoot DEPENDENCIES Core Gui GQt)
back to top