~uhh-ssd/+junk/humidity_readout

« back to all changes in this revision

Viewing changes to plplot/plplot-5.9.9/cmake/modules/double.cmake

  • Committer: Joachim Erfle
  • Date: 2013-07-24 13:53:41 UTC
  • Revision ID: joachim.erfle@desy.de-20130724135341-1qojpp701zsn009p
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# cmake/modules/double.cmake
 
2
#
 
3
# Start driver initializations
 
4
#
 
5
# Copyright (C) 2006  Alan W. Irwin
 
6
#
 
7
# This file is part of PLplot.
 
8
#
 
9
# PLplot is free software; you can redistribute it and/or modify
 
10
# it under the terms of the GNU Library General Public License as published
 
11
# by the Free Software Foundation; version 2 of the License.
 
12
#
 
13
# PLplot is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU Library General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU Library General Public License
 
19
# along with the file PLplot; if not, write to the Free Software
 
20
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 
21
 
 
22
# Module for determining configuration variables for PLplot related to
 
23
# double/single precision.
 
24
 
 
25
option(PL_DOUBLE 
 
26
"Compile the library with double precision floating point" ON)
 
27
 
 
28
if(PL_DOUBLE)
 
29
  set(LIB_TAG "${LIB_TAG}d")
 
30
endif(PL_DOUBLE)
 
31