mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 03:59:58 +00:00
ea8c04a4f8
CMakeFind<GENERATOR>.cmake, so it is more consistent e.g. with CMakeFindXcode.cmake Alex
10 lines
364 B
CMake
10 lines
364 B
CMake
# This file is included in CMakeSystemSpecificInformation.cmake if
|
|
# the CodeBlocks extra generator has been selected.
|
|
|
|
FIND_PROGRAM(CMAKE_CODEBLOCKS_EXECUTABLE NAMES codeblocks DOC "The CodeBlocks executable")
|
|
|
|
IF(CMAKE_CODEBLOCKS_EXECUTABLE)
|
|
SET(CMAKE_OPEN_PROJECT_COMMAND "${CMAKE_CODEBLOCKS_EXECUTABLE} <PROJECT_FILE>" )
|
|
ENDIF(CMAKE_CODEBLOCKS_EXECUTABLE)
|
|
|