]> SALOME platform Git repositories - modules/paravis.git/blob - src/CMakeLists.txt
Salome HOME
Merge from BR_PARAVIS_LOT1_2 24/02/2010
[modules/paravis.git] / src / CMakeLists.txt
1
2         SET(VERSION_INFO 0.0.0)
3         SET(SOVERSION_INFO 0)
4         SET(SUBDIRS)
5         SET(AM_CPPFLAGS)
6         SET(AM_CXXFLAGS)
7         SET(LDADD)
8         
9
10                 SET(AM_CPPFLAGS ${AM_CPPFLAGS} -DHAVE_SALOME_CONFIG -I${KERNEL_ROOT_DIR}/include/salome -include SALOMEconfig.h)
11                 SET(AM_CXXFLAGS ${AM_CXXFLAGS} -DHAVE_SALOME_CONFIG -I${KERNEL_ROOT_DIR}/include/salome -include SALOMEconfig.h)
12                 
13 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
14 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
15
16 #  This library is free software; you can redistribute it and/or 
17 #  modify it under the terms of the GNU Lesser General Public 
18 #  License as published by the Free Software Foundation; either 
19 #  version 2.1 of the License. 
20
21 #  This library is distributed in the hope that it will be useful, 
22 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
23 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
24 #  Lesser General Public License for more details. 
25
26 #  You should have received a copy of the GNU Lesser General Public 
27 #  License along with this library; if not, write to the Free Software 
28 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
29
30 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
31 #
32 #
33 #
34 #  File   : Makefile.in
35 #  Author : (CEA)
36 #  Modified by : Alexander BORODIN (OCN) - autotools usage
37
38 # include $(top_srcdir)/adm_local/unix/make_common_starter.am
39
40 IF(BUILD_PLUGINS)
41   SET(SUBDIRS
42       ENGINE
43       PVGUI
44       PV_SWIG
45       Plugins
46   )
47 ELSE(BUILD_PLUGINS)
48   SET(SUBDIRS
49       ENGINE
50       PVGUI
51       PV_SWIG
52   )
53 ENDIF(BUILD_PLUGINS)
54
55
56
57             FOREACH(dir ${SUBDIRS})
58             IF(NOT dir STREQUAL .)
59             ADD_SUBDIRECTORY(${dir})
60             ENDIF(NOT dir STREQUAL .)
61             ENDFOREACH(dir ${SUBDIRS})
62