~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to include/OpenMS/config.h.in

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2013-12-20 11:30:16 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131220113016-wre5g9bteeheq6he
Tags: 1.11.1-3
* remove version number from libbost development package names;
* ensure that AUTHORS is correctly shipped in all packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
// Use appropriate options to configure instead of changing config.h.
12
12
// Changes made in config.h will be lost as soon as you call CMAKE again.
13
13
//
14
 
// ==========================================================================
 
14
// --------------------------------------------------------------------------
 
15
//                   OpenMS -- Open-Source Mass Spectrometry               
 
16
// --------------------------------------------------------------------------
 
17
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
 
18
// ETH Zurich, and Freie Universitaet Berlin 2002-2012.
15
19
// 
16
 
// --------------------------------------------------------------------------
17
 
//                   OpenMS Mass Spectrometry Framework 
18
 
// --------------------------------------------------------------------------
19
 
//  Copyright (C) 2003-2011 -- Oliver Kohlbacher, Knut Reinert
20
 
//
21
 
//  This library is free software; you can redistribute it and/or
22
 
//  modify it under the terms of the GNU Lesser General Public
23
 
//  License as published by the Free Software Foundation; either
24
 
//  version 2.1 of the License, or (at your option) any later version.
25
 
//
26
 
//  This library is distributed in the hope that it will be useful,
27
 
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
28
 
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
29
 
//  Lesser General Public License for more details.
30
 
//
31
 
//  You should have received a copy of the GNU Lesser General Public
32
 
//  License along with this library; if not, write to the Free Software
33
 
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
20
// This software is released under a three-clause BSD license:
 
21
//  * Redistributions of source code must retain the above copyright
 
22
//    notice, this list of conditions and the following disclaimer.
 
23
//  * Redistributions in binary form must reproduce the above copyright
 
24
//    notice, this list of conditions and the following disclaimer in the
 
25
//    documentation and/or other materials provided with the distribution.
 
26
//  * Neither the name of any author or any participating institution 
 
27
//    may be used to endorse or promote products derived from this software 
 
28
//    without specific prior written permission.
 
29
// For a full list of authors, refer to the file AUTHORS. 
 
30
// --------------------------------------------------------------------------
 
31
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
32
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
33
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
34
// ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING 
 
35
// INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
 
36
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
 
37
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
 
38
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
 
39
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
 
40
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
 
41
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
42
//
35
43
// --------------------------------------------------------------------------
36
44
// $Maintainer: Chris Bielow $
151
159
#define OPENMS_LIBSVM_VERSION_MAJOR @CF_OPENMS_LIBSVM_VERSION_MAJOR@
152
160
#define OPENMS_LIBSVM_VERSION_MINOR @CF_OPENMS_LIBSVM_VERSION_MINOR@
153
161
 
 
162
#define OPENMS_BOOST_VERSION_MAJOR @CF_OPENMS_BOOST_VERSION_MAJOR@
 
163
#define OPENMS_BOOST_VERSION_MINOR @CF_OPENMS_BOOST_VERSION_MINOR@
 
164
#define OPENMS_BOOST_VERSION_SUBMINOR @CF_OPENMS_BOOST_VERSION_SUBMINOR@
 
165
#define OPENMS_BOOST_VERSION @CF_OPENMS_BOOST_VERSION@
 
166
 
154
167
#define COINOR_SOLVER @CF_USECOINOR@ 
155
168
 
 
169
#define OPENMS_GLPK_VERSION @CF_OPENMS_GLPK_VERSION@
 
170
#define OPENMS_GLPK_VERSION_MAJOR @CF_OPENMS_GLPK_VERSION_MAJOR@
 
171
#define OPENMS_GLPK_VERSION_MINOR @CF_OPENMS_GLPK_VERSION_MINOR@
156
172
 
157
173
// class & TOPP tests
158
174
#define DB_PLUGIN "@CF_QT_DB_PLUGIN@"
160
176
#define OPENMS_GET_TEST_DATA_PATH(filename) (std::string("@CF_OPENMS_TEST_DATA_PATH@") + filename).c_str()
161
177
#define OPENMS_GET_TEST_DATA_PATH_MESSAGE(prefix,filename,suffix) (prefix + std::string("@CF_OPENMS_TEST_DATA_PATH@") + filename + suffix).c_str()
162
178
 
 
179
#ifdef _OPENMP
 
180
  #define IF_MASTERTHREAD if (omp_get_thread_num() ==0)  
 
181
#else
 
182
  #define IF_MASTERTHREAD 
 
183
#endif    
 
184
   
163
185
 
164
186
#endif // OPENMS_CONFIG_H