Salome HOME
Copyright update 2020
[modules/geom.git] / src / CurveCreator / CMakeLists.txt
1 # Copyright (C) 2012-2020  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, or (at your option) any later version.
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(UseQtExt)
22 ENDIF(SALOME_BUILD_GUI)
23
24 # --- options ---
25
26 # additional include directories
27 INCLUDE_DIRECTORIES(
28   ${PTHREAD_INCLUDE_DIR}
29   ${OpenCASCADE_INCLUDE_DIR}
30   ${KERNEL_INCLUDE_DIRS}
31   ${GUI_INCLUDE_DIRS}
32   ${PROJECT_SOURCE_DIR}/src/GEOMUtils
33 )
34
35 # additional preprocessor / compiler flags
36 ADD_DEFINITIONS(
37   ${OpenCASCADE_DEFINITIONS}
38   ${QT_DEFINITIONS}
39 )
40
41 # libraries to link to
42 SET(_link_LIBRARIES
43   GEOMUtils
44 )
45 IF(SALOME_BUILD_GUI)
46   LIST(APPEND _link_LIBRARIES
47     ${GUI_qtx}
48     ${GUI_suit}
49     ${GUI_OCCViewer}
50   )
51 ENDIF(SALOME_BUILD_GUI)
52
53 # --- headers ---
54
55 IF(SALOME_BUILD_GUI)
56   # header files / to be processed by moc
57   SET(_moc_HEADERS
58     CurveCreator_NewSectionDlg.h
59     CurveCreator_TableView.h
60     CurveCreator_TreeView.h
61     CurveCreator_Widget.h
62   )
63 ENDIF(SALOME_BUILD_GUI)
64
65 # header files / no processing
66 SET(_other_HEADERS
67   CurveCreator.hxx
68   CurveCreator_Curve.hxx
69   CurveCreator_Diff.hxx
70   CurveCreator_Displayer.hxx
71   CurveCreator_ICurve.hxx
72   CurveCreator_Macro.hxx
73   CurveCreator_Operation.hxx
74   CurveCreator_PosPoint.hxx
75   CurveCreator_Section.hxx
76   CurveCreator_UtilsICurve.hxx
77   CurveCreator_Utils.hxx
78 )
79
80 # header files / to install
81 SET(CurveCreator_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
82
83 # --- sources ---
84
85 IF(SALOME_BUILD_GUI)
86   # sources / moc wrappings
87   QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
88 ENDIF(SALOME_BUILD_GUI)
89
90 # sources / static
91 SET(_other_SOURCES
92   CurveCreator_Curve.cxx
93   CurveCreator_Diff.cxx
94   CurveCreator_Displayer.cxx
95   CurveCreator_Operation.cxx
96   CurveCreator_Section.cxx
97   CurveCreator_Utils.cxx
98   CurveCreator_UtilsICurve.cxx
99 )
100 IF(SALOME_BUILD_GUI)
101   LIST(APPEND _other_SOURCES
102     CurveCreator_NewSectionDlg.cxx
103     CurveCreator_TableView.cxx
104     CurveCreator_TreeView.cxx
105     CurveCreator_Widget.cxx
106   )
107 ENDIF(SALOME_BUILD_GUI)
108
109 # sources / to compile
110 SET(CurveCreator_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
111
112 # --- rules ---
113
114 ADD_LIBRARY(CurveCreator ${CurveCreator_SOURCES})
115 TARGET_LINK_LIBRARIES(CurveCreator ${_link_LIBRARIES})
116 INSTALL(TARGETS CurveCreator EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
117
118 INSTALL(FILES ${CurveCreator_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})