Salome HOME
Fix JoinAll operation
[modules/hydro.git] / src / HYDROCurveCreator / CMakeLists.txt
1 # Copyright (C) 2012-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 IF(SALOME_BUILD_GUI)
21   INCLUDE(${QT_USE_FILE})
22 ENDIF(SALOME_BUILD_GUI)
23
24 # --- options ---
25
26 # additional include directories
27 INCLUDE_DIRECTORIES(
28   ${QT_INCLUDE_DIRS}
29   ${PTHREAD_INCLUDE_DIR}
30   ${CAS_INCLUDE_DIRS}
31   ${KERNEL_INCLUDE_DIRS}
32   ${GUI_INCLUDE_DIRS}
33   ${GEOM_INCLUDE_DIRS}
34 )
35
36 # additional preprocessor / compiler flags
37 ADD_DEFINITIONS(
38   -DCURVECREATOR_EXPORTS
39   ${CAS_DEFINITIONS}
40   ${QT_DEFINITIONS}
41 )
42
43 # libraries to link to
44 SET(_link_LIBRARIES
45   ${GEOM_GEOMUtils}
46 )
47 IF(SALOME_BUILD_GUI)
48   LIST(APPEND _link_LIBRARIES
49     ${GUI_qtx}
50     ${GUI_suit}
51     ${GUI_OCCViewer}
52   )
53 ENDIF(SALOME_BUILD_GUI)
54
55 # --- headers ---
56
57 IF(SALOME_BUILD_GUI)
58   # header files / to be processed by moc
59   SET(_moc_HEADERS
60     CurveCreator_NewSectionDlg.h
61     CurveCreator_TreeView.h
62 #    CurveCreator_UndoOptsDlg.h
63     CurveCreator_Widget.h
64   )
65 ENDIF(SALOME_BUILD_GUI)
66
67 # header files / no processing
68 SET(_other_HEADERS
69   CurveCreator.hxx
70   CurveCreator_Displayer.h
71   CurveCreator_Curve.hxx
72   CurveCreator_Diff.hxx
73   CurveCreator_ICurve.hxx
74   CurveCreator_Macro.hxx
75   CurveCreator_Operation.hxx
76   CurveCreator_Section.hxx
77   CurveCreator_Utils.h
78   CurveCreator_PosPoint.hxx
79 )
80
81 # header files / to install
82 SET(HYDROCurveCreator_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
83
84 # --- sources ---
85
86 IF(SALOME_BUILD_GUI)
87   # sources / moc wrappings
88   QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
89 ENDIF(SALOME_BUILD_GUI)
90
91 # sources / static
92 SET(_other_SOURCES
93   CurveCreator_Displayer.cxx
94   CurveCreator_Curve.cxx
95   CurveCreator_Diff.cxx
96   CurveCreator_Operation.cxx
97   CurveCreator_Utils.cxx
98 )
99 IF(SALOME_BUILD_GUI)
100   LIST(APPEND _other_SOURCES
101     CurveCreator_NewSectionDlg.cxx
102     CurveCreator_TreeView.cxx
103 #    CurveCreator_UndoOptsDlg.cxx
104     CurveCreator_Widget.cxx
105   )
106 ENDIF(SALOME_BUILD_GUI)
107
108 # sources / to compile
109 SET(HYDROCurveCreator_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
110
111 # --- rules ---
112
113 ADD_LIBRARY(HYDROCurveCreator ${HYDROCurveCreator_SOURCES} ${HYDROCurveCreator_HEADERS})
114 TARGET_LINK_LIBRARIES(HYDROCurveCreator ${_link_LIBRARIES} ${CAS_TKGeomAlgo})
115 INSTALL(TARGETS HYDROCurveCreator EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
116
117 INSTALL(FILES ${HYDROCurveCreator_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
118