Salome HOME
Separate action "Find bottom" for context menu.
[modules/hydro.git] / src / HYDROData / CMakeLists.txt
1 #include(../../CMake/Common.cmake)
2
3 set(PROJECT_HEADERS
4     HYDROData.h
5     HYDROData_AltitudeObject.h
6     HYDROData_Application.h
7     HYDROData_ArtificialObject.h
8     HYDROData_Bathymetry.h
9     HYDROData_BSplineOperation.h
10     HYDROData_CalculationCase.h
11     HYDROData_Channel.h
12     HYDROData_Confluence.h
13     HYDROData_Digue.h
14     HYDROData_Document.h
15     HYDROData_DummyObject3D.h
16     HYDROData_Entity.h
17     HYDROData_IAltitudeObject.h
18     HYDROData_IInterpolator.h
19     HYDROData_Image.h
20     HYDROData_ImmersibleZone.h
21     HYDROData_IPolyline.h
22     HYDROData_Iterator.h
23     HYDROData_Lambert93.h
24     HYDROData_NaturalObject.h
25     HYDROData_Object.h
26     HYDROData_Obstacle.h
27     HYDROData_ObstacleAltitude.h
28     HYDROData_OperationsFactory.h
29     HYDROData_Pipes.h
30     HYDROData_PolylineXY.h
31     HYDROData_Polyline3D.h
32     HYDROData_PriorityQueue.h
33     HYDROData_Profile.h
34     HYDROData_ProfileUZ.h
35     HYDROData_Projection.h
36     HYDROData_Region.h
37     HYDROData_River.h
38     HYDROData_ShapesGroup.h
39     HYDROData_ShapesTool.h
40     HYDROData_SplittedShapesGroup.h
41     HYDROData_SplitToZonesTool.h
42     HYDROData_Stream.h
43     HYDROData_StreamAltitude.h
44     HYDROData_Tool.h
45     HYDROData_Transform.h
46     HYDROData_VisualState.h
47     HYDROData_Warning.h
48     HYDROData_Zone.h
49         HYDROData_GeomTool.h
50         HYDROData_IProfilesInterpolator.h
51         HYDROData_LinearInterpolator.h
52         HYDROData_InterpolatorsFactory.h
53 )
54
55 set(PROJECT_SOURCES 
56     HYDROData_AltitudeObject.cxx
57     HYDROData_Application.cxx
58     HYDROData_ArtificialObject.cxx
59     HYDROData_Bathymetry.cxx
60     HYDROData_BSplineOperation.cxx
61     HYDROData_CalculationCase.cxx
62     HYDROData_Channel.cxx
63     HYDROData_Confluence.cxx
64     HYDROData_Digue.cxx
65     HYDROData_Document.cxx
66     HYDROData_DummyObject3D.cxx
67     HYDROData_Entity.cxx
68     HYDROData_IAltitudeObject.cxx
69     HYDROData_IInterpolator.cxx
70     HYDROData_Image.cxx
71     HYDROData_ImmersibleZone.cxx
72     HYDROData_IPolyline.cxx
73     HYDROData_Iterator.cxx
74     HYDROData_Lambert93.cxx
75     HYDROData_NaturalObject.cxx
76     HYDROData_Object.cxx
77     HYDROData_Obstacle.cxx
78     HYDROData_ObstacleAltitude.cxx
79     HYDROData_OperationsFactory.cxx
80     HYDROData_Pipes.cxx
81     HYDROData_PolylineXY.cxx
82     HYDROData_Polyline3D.cxx
83     HYDROData_PriorityQueue.cxx
84     HYDROData_Profile.cxx
85     HYDROData_ProfileUZ.cxx
86     HYDROData_Projection.cxx
87     HYDROData_Region.cxx
88     HYDROData_River.cxx
89     HYDROData_ShapesGroup.cxx
90     HYDROData_ShapesTool.cxx
91     HYDROData_SplittedShapesGroup.cxx
92     HYDROData_SplitToZonesTool.cxx
93     HYDROData_Stream.cxx
94     HYDROData_StreamAltitude.cxx
95     HYDROData_Tool.cxx
96     HYDROData_Transform.cxx
97     HYDROData_VisualState.cxx
98     HYDROData_Zone.cxx
99         HYDROData_GeomTool.cxx
100         HYDROData_IProfilesInterpolator.cxx
101         HYDROData_LinearInterpolator.cxx
102         HYDROData_InterpolatorsFactory.cxx
103 )
104
105 add_definitions(
106   -DHYDRODATA_EXPORTS
107   ${CAS_DEFINITIONS}
108   ${OMNIORB_DEFINITIONS}
109   ${QT_DEFINITIONS}
110 #  ${GUI_CXXFLAGS}
111   ${GUI_DEFINITIONS}
112   ${GEOM_DEFINITIONS}
113 )
114
115 include_directories(
116   ${CAS_INCLUDE_DIRS}
117   ${QT_INCLUDES}
118   ${CMAKE_CURRENT_SOURCE_DIR}
119 #  ${GUI_ROOT_DIR}/include/salome
120   ${GUI_INCLUDE_DIRS}
121 )
122
123 add_library(HYDROData SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
124 target_link_libraries(HYDROData ${GEOM_GEOMUtils} ${CAS_OCAF} ${CAS_OCAFVIS} ${CAS_TKG3d} ${CAS_TKGeomBase} ${CAS_TKGeomAlgo}
125                       ${CAS_TKBrep} ${CAS_TKIGES} ${CAS_TKSTEP} ${CAS_TKTopAlgo} ${CAS_TKBO} ${CAS_TKBool} ${CAS_TKOffset}
126                       ${QT_LIBRARIES} ${GUI_ImageComposer} ${CAS_TKHLR} ${GEOM_GEOM} ${GEOM_GEOMBase} )
127 INSTALL(TARGETS HYDROData EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
128
129 set(PROJECT_LIBRARIES HYDROData)
130
131 # tests
132 if(SALOME_BUILD_TESTS)
133
134   set(TEST_HEADERS 
135     test_HYDROData_Bathymetry.h
136     test_HYDROData_BSplineOperation.h
137     test_HYDROData_CalculationCase.h
138     test_HYDROData_Document.h
139     test_HYDROData_Entity.h
140     test_HYDROData_Image.h
141     test_HYDROData_Iterator.h
142     test_HYDROData_OperationsFactory.h
143     test_HYDROData_PolylineXY.h
144   )
145
146   set(TEST_SOURCES 
147     test_HYDROData_Main.cxx
148     test_HYDROData_Bathymetry.cxx
149     test_HYDROData_BSplineOperation.cxx
150     test_HYDROData_CalculationCase.cxx
151     test_HYDROData_Document.cxx
152     test_HYDROData_Entity.cxx
153     test_HYDROData_Image.cxx
154     test_HYDROData_Iterator.cxx
155     test_HYDROData_OperationsFactory.cxx
156     test_HYDROData_PolylineXY.cxx
157   )
158   
159   set(TEST_EXE test_HYDROData)
160   include(../../CMake/CPPUnitTests.cmake)
161   target_link_libraries(test_HYDROData ${CAS_OCAF} ${CAS_MODELER} ${QT_LIBRARIES} ${CPPUNIT_LIBRARIES} HYDROData)
162
163 endif(SALOME_BUILD_TESTS)
164
165 #include(../../CMake/CommonInstall.cmake)