# # $Id: FindMEI.cmake,v 1.5 2007/04/26 19:33:56 anton Exp $ # # Author(s): Ankur Kapoor # Created on: 2004-05-27 # # (C) Copyright 2004-2007 Johns Hopkins University (JHU), All Rights # Reserved. # # --- begin cisst license - do not edit --- # # This software is provided "as is" under an open source license, with # no warranty. The complete license can be found in license.txt and # http://www.cisst.org/cisst/license.txt. # # --- end cisst license --- # # try to find MEI on Windows systems. # (Motion Engineering Inc.) # # The following values are defined # # MEI_INCLUDE_DIR - include directories to use MEI # MEI_LIBRARY - link against this to use MEI # # $Id: FindMEI.cmake,v 1.5 2007/04/26 19:33:56 anton Exp $ # IF(WIN32) # Find the MEI Library FIND_LIBRARY(MEI_LIBRARY NAMES medvc60f PATHS "C:/MEI/2509/Libs/" ${MEI_LIBRARY}/*) # Find the MEI include directory FIND_PATH(MEI_INCLUDE_DIR Idsp.h "C:/MEI/2509/Sources/" ${MEI_LIBRARY_PATH}/Sources/) ENDIF(WIN32) IF(CISST_HAS_LINUX_RTAI) # Find the MEI Library FIND_LIBRARY(MEI_LIBRARY NAMES mpd PATHS "/usr/local/lib/" ${MEI_LIBRARY}/*) # Find the MEI include directory FIND_PATH(MEI_INCLUDE_DIR idsp.h "/usr/local/include/mei/" ${MEI_LIBRARY_PATH}/) ENDIF(CISST_HAS_LINUX_RTAI) # # $Log: FindMEI.cmake,v $ # Revision 1.5 2007/04/26 19:33:56 anton # All files in libraries: Applied new license text, separate copyright and # updated dates, added standard header where missing. # # Revision 1.4 2006/11/20 20:33:19 anton # Licensing: Applied new license to cisstCommon, cisstVector, cisstNumerical, # cisstInteractive, cisstImage and cisstOSAbstraction. # # Revision 1.3 2005/09/06 13:58:53 anton # cmake files: Added license. # # Revision 1.2 2005/07/30 06:15:02 kapoor # DeviceInterface: (MEI) Added roboust cmake thingies for MEI. # # Revision 1.1 2004/05/27 17:09:25 anton # Incorporated code from Ankur for the ATI, MEI, STG and LoPoMoCo devices. # The build process will have to be redone whenever will will add dynamic # loading. # #