# # $Id: FindCNetlib.cmake,v 1.5 2007/04/26 19:33:56 anton Exp $ # # Author(s): Anton Deguet # Created on: 2004-11-01 # # (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 CNetlib # (code from www.netlib.org, ERC CISST customized version) # # The following values are defined # # CNETLIB_INCLUDE_DIR - include directories to use CNETLIB # CNETLIB_LIBRARIES - link against this to use CNETLIB (fullpath) # # $Id: FindCNetlib.cmake,v 1.5 2007/04/26 19:33:56 anton Exp $ # SET(CNETLIB_SEARCH_PATH /usr /usr/local /home/erc/cnetlib ) FIND_PATH(CNETLIB_DIR include/cnetlib.h ${CNETLIB_SEARCH_PATH}) IF(CNETLIB_DIR) SET(CNETLIB_INCLUDE_DIR ${CNETLIB_DIR}/include) FIND_LIBRARY(CNETLIB_LIBRARIES cnetlib ${CNETLIB_DIR}/lib) ENDIF(CNETLIB_DIR) # # $Log: FindCNetlib.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/06/17 21:30:24 anton # cisst CMake code: Major update to ease the configuration of tests and # examples. # # Revision 1.1 2004/11/01 17:44:48 anton # cisstNumerical: Added some Solvers and the files to use our own cnetlib # code added to the cisst CVS repository (module "cnetlib"). # #