Salome HOME
Win32 compatibility
[tools/libbatch.git] / CMakeLists.txt
1 #  Copyright (C) 2007-2013  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
30 SET (BUILD_LOCAL_SUBMISSION TRUE CACHE BOOL "Build classes for local submission")
31 SET (BUILD_PYTHON_WRAPPING TRUE CACHE BOOL "Generate Python wrapping")
32 SET (TEST_ENABLED FALSE CACHE BOOL "Enable testing")
33
34 IF (TEST_ENABLED)
35     ENABLE_TESTING()
36 ENDIF (TEST_ENABLED)
37
38 IF (BUILD_LOCAL_SUBMISSION)
39     find_package (Local)
40 ENDIF (BUILD_LOCAL_SUBMISSION)
41 IF (BUILD_PYTHON_WRAPPING)
42     FIND_PACKAGE(LibbatchPYTHON)
43     FIND_PACKAGE(SWIG)
44 ENDIF (BUILD_PYTHON_WRAPPING)
45
46 SET(CPACK_GENERATOR TGZ)
47 SET(CPACK_SOURCE_GENERATOR TGZ ZIP)
48 SET(CPACK_PACKAGE_VERSION_MAJOR 2)
49 SET(CPACK_PACKAGE_VERSION_MINOR 0)
50 SET(CPACK_PACKAGE_VERSION_PATCH 0)
51 SET(CPACK_SOURCE_IGNORE_FILES /\\\\.;/CVS/;~)
52 SET(CPACK_SOURCE_PACKAGE_FILE_NAME
53     ${PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
54
55 configure_file (${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
56
57 INCLUDE(Summary)
58
59 add_subdirectory (src)
60 add_subdirectory (misc)
61
62 INCLUDE(CPack)
63
64 MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY EXECUTABLE_OUTPUT_PATH)