Sha256: 01ea17705f2d09475f534331d98c3503e73ae78e65f11932db9473d9f1224be8

Contents?: true

Size: 1.16 KB

Versions: 20

Compression:

Stored size: 1.16 KB

Contents

# - Try to find the mono, mcs, gmcs and gacutil
#
# defines
#
# MONO_FOUND - system has mono, mcs, gmcs and gacutil
# MONO_PATH - where to find 'mono'
# GMCS_PATH - where to find 'gmcs'
# GACUTIL_PATH - where to find 'gacutil'
#
# copyright (c) 2007 Arno Rehn arno@arnorehn.de
#
# Redistribution and use is allowed according to the terms of the GPL license.

FIND_PROGRAM (MONO_EXECUTABLE mono)
FIND_PROGRAM (GMCS_EXECUTABLE gmcs)
FIND_PROGRAM (GACUTIL_EXECUTABLE gacutil)

SET (MONO_FOUND FALSE CACHE INTERNAL "")

IF (MONO_EXECUTABLE AND GMCS_EXECUTABLE AND GACUTIL_EXECUTABLE)
	SET (MONO_FOUND TRUE CACHE INTERNAL "")
ENDIF (MONO_EXECUTABLE AND GMCS_EXECUTABLE AND GACUTIL_EXECUTABLE)

IF (NOT Mono_FIND_QUIETLY)
    MESSAGE(STATUS "Path of mono: ${MONO_EXECUTABLE}")
    MESSAGE(STATUS "Path of gmcs: ${GMCS_EXECUTABLE}")
    MESSAGE(STATUS "Path of gacutil: ${GACUTIL_EXECUTABLE}")
ENDIF (NOT Mono_FIND_QUIETLY)

IF (NOT MONO_FOUND)
	IF (Mono_FIND_REQUIRED)
		MESSAGE(FATAL_ERROR "Could not find one or more of the following programs: mono, gmcs, gacutil")
	ENDIF (Mono_FIND_REQUIRED)
ENDIF (NOT MONO_FOUND)

MARK_AS_ADVANCED(MONO_EXECUTABLE GMCS_EXECUTABLE GACUTIL_EXECUTABLE)

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
rock-qtbindings-4.8.6.5 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.6.5 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.6.4 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.6.2 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.6.1 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.6.0 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.5.2 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.5.1 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.5.0 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.3.0-x86-mingw32 ext/cmake/modules/FindMono.cmake
qtbindings-4.8.3.0 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.4-x86-mingw32 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.4 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.3 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.2-x86-mingw32 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.2 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.1 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.1-x86-mingw32 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.0 ext/cmake/modules/FindMono.cmake
qtbindings-4.6.3.0-x86-mingw32 ext/cmake/modules/FindMono.cmake