CMakeFindKDevelop3.cmake 474 B

12345678910111213
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. # This file is included in CMakeSystemSpecificInformation.cmake if
  4. # the KDevelop3 extra generator has been selected.
  5. find_program(CMAKE_KDEVELOP3_EXECUTABLE NAMES kdevelop DOC "The KDevelop3 executable")
  6. if(CMAKE_KDEVELOP3_EXECUTABLE)
  7. set(CMAKE_OPEN_PROJECT_COMMAND "${CMAKE_KDEVELOP3_EXECUTABLE} <PROJECT_FILE>" )
  8. endif()