Salome HOME
CMake updates
[tools/libbatch.git] / CMakeLists.txt
1 #  Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22
23 project (libBatch)
24
25 cmake_minimum_required (VERSION 2.8)
26 set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules/)
27
28 find_package (PThread REQUIRED)
29 find_package (Makeinfo)
30
31 SET (BUILD_LOCAL_SUBMISSION TRUE CACHE BOOL "Build classes for local submission")
32 SET (BUILD_PYTHON_WRAPPING TRUE CACHE BOOL "Generate Python wrapping")
33 SET (TEST_ENABLED FALSE CACHE BOOL "Enable testing")
34
35 IF (TEST_ENABLED)
36     ENABLE_TESTING()
37 ENDIF (TEST_ENABLED)
38
39 IF (BUILD_LOCAL_SUBMISSION)
40     find_package (Local)
41 ENDIF (BUILD_LOCAL_SUBMISSION)
42 IF (BUILD_PYTHON_WRAPPING)
43     FIND_PACKAGE(PythonInterp)
44     SET(PythonLibs_FIND_VERSION ${PYTHON_VERSION_STRING})
45     FIND_PACKAGE(PythonLibs)
46     FIND_PACKAGE(SWIG)
47 ENDIF (BUILD_PYTHON_WRAPPING)
48
49 SET(CPACK_GENERATOR TGZ)
50 SET(CPACK_SOURCE_GENERATOR TGZ ZIP)
51 SET(CPACK_PACKAGE_VERSION_MAJOR 1)
52 SET(CPACK_PACKAGE_VERSION_MINOR 6)
53 SET(CPACK_PACKAGE_VERSION_PATCH 0)
54 SET(CPACK_SOURCE_IGNORE_FILES /\\\\.;/CVS/;~)
55 SET(CPACK_SOURCE_PACKAGE_FILE_NAME
56     ${PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
57
58 configure_file (${CMAKE_CURRENT_SOURCE_DIR}/Batch_config.h.in ${CMAKE_CURRENT_BINARY_DIR}/Batch_config.h)
59
60 INCLUDE(Summary)
61
62 add_subdirectory (src)
63
64 IF (Makeinfo_FOUND)
65     add_subdirectory (doc)
66 ENDIF (Makeinfo_FOUND)
67
68 add_subdirectory (misc)
69
70 INCLUDE(CPack)
71
72 MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY EXECUTABLE_OUTPUT_PATH)