2012-12-28 07:39:15 -06:00
|
|
|
# Find Qwt
|
|
|
|
# ~~~~~~~~
|
|
|
|
# Copyright (c) 2010, Tim Sutton <tim at linfiniti.com>
|
|
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
#
|
|
|
|
# Once run this will define:
|
|
|
|
#
|
|
|
|
# QWT_FOUND = system has QWT lib
|
|
|
|
# QWT_LIBRARY = full path to the QWT library
|
|
|
|
# QWT_INCLUDE_DIR = where to find headers
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
FIND_PATH(QWT_INCLUDE_DIR NAMES qwt.h PATHS
|
|
|
|
/usr/include
|
Integration of the latest Coloquinte in Etesian & misc modifs.
* New: In Bootstrap, in Builder & coriolisEnv.py support for RHEL7/SL7.
The sub-directory name is 'el7_64'.
In qt_setup() add QtSvg to list of Qt5 & Qt4 used libraries.
* New: In Hurricane, In Cell add a placeholder for flags. First use to
store whether the Nets have been transhierarchically flatteneds.
* New: In Hurricane, In NetRoutingState add an Unconnected flag for
more accurate diagnosis.
* New: Hurricane, in CellViewer add an entry menu for stress tests.
The script must be named "stressScript.py" in the cwd.
* Change: In CRL Core, in display.conf add a scaling parameter for the
display threhold of the layer. This way we can adapt to different
standard cells height.
* Change: In CRL Core, in ISPD05 bookshelf loader, use the pitch of the
cell gauge instead of a hard-wired 5.0.
* Change: In Cumulus, in ClockTreePlugin, add support for Etesian placer
and a new configuration parameter to choose between Mauka/Etesian.
* New: In Etesian, support for the latest Coloquinte.
Add feed insertion stage.
* Bug: In Kite, In BuildPowerRails, check that _ck is not NULL before
tring to access it's name...
* Change: In Kite, check if the Cell has it's Nets flattened before
doing it (or not).
2015-02-01 16:24:13 -06:00
|
|
|
/usr/include/qt5
|
2012-12-28 07:39:15 -06:00
|
|
|
/usr/local/include
|
|
|
|
"$ENV{LIB_DIR}/include"
|
|
|
|
"$ENV{INCLUDE}"
|
|
|
|
PATH_SUFFIXES qwt-qt4 qwt qwt5
|
|
|
|
)
|
|
|
|
|
|
|
|
FIND_LIBRARY(QWT_LIBRARY NAMES qwt qwt5 qwt-qt4 qwt5-qt4 PATHS
|
|
|
|
/usr/lib
|
|
|
|
/usr/local/lib
|
|
|
|
"$ENV{LIB_DIR}/lib"
|
|
|
|
"$ENV{LIB}/lib"
|
|
|
|
)
|
|
|
|
|
|
|
|
IF (QWT_INCLUDE_DIR AND QWT_LIBRARY)
|
|
|
|
SET(QWT_FOUND TRUE)
|
|
|
|
ENDIF (QWT_INCLUDE_DIR AND QWT_LIBRARY)
|
|
|
|
|
|
|
|
IF (QWT_FOUND)
|
|
|
|
IF (NOT QWT_FIND_QUIETLY)
|
|
|
|
MESSAGE(STATUS "Found Qwt: ${QWT_LIBRARY}")
|
|
|
|
ENDIF (NOT QWT_FIND_QUIETLY)
|
|
|
|
ELSE (QWT_FOUND)
|
|
|
|
IF (QWT_FIND_REQUIRED)
|
|
|
|
MESSAGE(FATAL_ERROR "Could not find Qwt")
|
|
|
|
ENDIF (QWT_FIND_REQUIRED)
|
|
|
|
ENDIF (QWT_FOUND)
|