]> SALOME platform Git repositories - modules/paravis.git/blob - doc/salome/gui/CMakeLists.txt
Salome HOME
Merge from BR_PARAVIS_LOT1_2 24/02/2010
[modules/paravis.git] / doc / salome / gui / 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 # PARAVIS : ParaView wrapper SALOME module
14 #
15 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
16 #
17 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
18 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
19 #
20 #  This library is free software; you can redistribute it and/or
21 #  modify it under the terms of the GNU Lesser General Public
22 #  License as published by the Free Software Foundation; either
23 #  version 2.1 of the License.
24 #
25 #  This library is distributed in the hope that it will be useful,
26 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
27 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
28 #  Lesser General Public License for more details.
29 #
30 #  You should have received a copy of the GNU Lesser General Public
31 #  License along with this library; if not, write to the Free Software
32 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
33 #
34 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
35 #
36 # -* Makefile *- 
37 #
38 # Author : Margarita KARPUNINA (OCN)
39 # Date : 05/12/2008
40 # $Header$
41 #
42
43 # include $(top_srcdir)/adm_local/unix/make_common_starter.am
44
45 SET(EXTRA_DIST
46     ${EXTRA_DIST}
47     images
48     static
49 )
50
51 # dev_docs: doxyfile
52 #       echo "Running doxygen in directory: "`pwd`;     $(DOXYGEN) $<;
53
54 # clean-local:
55 #       -rm -fr PARAVIS doxygen.bak
56
57 # install-data-local:
58 #       if test -d PARAVIS; then          $(INSTALL) -d $(DESTDIR)$(docdir)/gui ;         cp -rp PARAVIS $(DESTDIR)$(docdir)/gui ;      fi;
59
60 # uninstall-local:
61 #       rm -rf $(DESTDIR)$(docdir)/gui/PARAVIS
62
63
64                 SET(input ${CMAKE_CURRENT_SOURCE_DIR}/doxyfile.in)
65                 
66
67                 SET(output ${CMAKE_CURRENT_BINARY_DIR}/doxyfile)
68                 
69
70                 MESSAGE(STATUS "Creation of ${output}")
71                 CONFIGURE_FILE(${input} ${output})
72                 
73
74             FOREACH(dir ${SUBDIRS})
75             IF(NOT dir STREQUAL .)
76             ADD_SUBDIRECTORY(${dir})
77             ENDIF(NOT dir STREQUAL .)
78             ENDFOREACH(dir ${SUBDIRS})
79