Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / GeomAlgoAPI / CMakeLists.txt
1 ## Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 FIND_PACKAGE(SWIG REQUIRED)
4
5 INCLUDE(${SWIG_USE_FILE})
6 INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
7
8 SET(PROJECT_HEADERS
9     GeomAlgoAPI.h
10     GeomAlgoAPI_Tools.h
11     GeomAlgoAPI_CompoundBuilder.h
12     GeomAlgoAPI_FaceBuilder.h
13     GeomAlgoAPI_EdgeBuilder.h
14     GeomAlgoAPI_PointBuilder.h
15     GeomAlgoAPI_SketchBuilder.h
16     GeomAlgoAPI_Prism.h
17     GeomAlgoAPI_Revolution.h
18     GeomAlgoAPI_Boolean.h
19     GeomAlgoAPI_Rotation.h
20     GeomAlgoAPI_Translation.h
21     GeomAlgoAPI_MakeShape.h
22     GeomAlgoAPI_MakeShapeCustom.h
23     GeomAlgoAPI_MakeShapeList.h
24     GeomAlgoAPI_MakeSweep.h
25     GeomAlgoAPI_DFLoader.h
26     GeomAlgoAPI_Placement.h
27     GeomAlgoAPI_BREPImport.h
28     GeomAlgoAPI_STEPImport.h
29     GeomAlgoAPI_IGESImport.h
30     GeomAlgoAPI_BREPExport.h
31     GeomAlgoAPI_STEPExport.h
32     GeomAlgoAPI_IGESExport.h
33     GeomAlgoAPI_Transform.h
34     GeomAlgoAPI_ShapeTools.h
35     GeomAlgoAPI_Partition.h
36     GeomAlgoAPI_PaveFiller.h
37     GeomAlgoAPI_Intersection.h
38     GeomAlgoAPI_Pipe.h
39     GeomAlgoAPI_WireBuilder.h
40     GeomAlgoAPI_Sewing.h
41     GeomAlgoAPI_ShapeBuilder.h
42     GeomAlgoAPI_ShapeAPI.h
43     GeomAlgoAPI_Exception.h
44     GeomAlgoAPI_Box.h
45     GeomAlgoAPI_BoxPoints.h
46     GeomAlgoAPI_XAOExport.h
47     GeomAlgoAPI_XAOImport.h
48     GeomAlgoAPI_Copy.h
49 )
50
51 SET(PROJECT_SOURCES
52     GeomAlgoAPI_Tools.cpp
53     GeomAlgoAPI_CompoundBuilder.cpp
54     GeomAlgoAPI_FaceBuilder.cpp
55     GeomAlgoAPI_EdgeBuilder.cpp
56     GeomAlgoAPI_PointBuilder.cpp
57     GeomAlgoAPI_SketchBuilder.cpp
58     GeomAlgoAPI_Prism.cpp
59     GeomAlgoAPI_Revolution.cpp
60     GeomAlgoAPI_Boolean.cpp
61     GeomAlgoAPI_Rotation.cpp
62     GeomAlgoAPI_Translation.cpp
63     GeomAlgoAPI_MakeShape.cpp
64     GeomAlgoAPI_MakeShapeCustom.cpp
65     GeomAlgoAPI_MakeShapeList.cpp
66     GeomAlgoAPI_MakeSweep.cpp
67     GeomAlgoAPI_DFLoader.cpp
68     GeomAlgoAPI_Placement.cpp
69     GeomAlgoAPI_BREPImport.cpp
70     GeomAlgoAPI_STEPImport.cpp
71     GeomAlgoAPI_IGESImport.cpp
72     GeomAlgoAPI_BREPExport.cpp
73     GeomAlgoAPI_STEPExport.cpp
74     GeomAlgoAPI_IGESExport.cpp
75     GeomAlgoAPI_Transform.cpp
76     GeomAlgoAPI_ShapeTools.cpp
77     GeomAlgoAPI_Partition.cpp
78     GeomAlgoAPI_PaveFiller.cpp
79     GeomAlgoAPI_Intersection.cpp
80     GeomAlgoAPI_Pipe.cpp
81     GeomAlgoAPI_WireBuilder.cpp
82     GeomAlgoAPI_Sewing.cpp
83     GeomAlgoAPI_ShapeBuilder.cpp
84     GeomAlgoAPI_ShapeAPI.cpp
85     GeomAlgoAPI_Exception.cpp
86     GeomAlgoAPI_Box.cpp
87     GeomAlgoAPI_BoxPoints.cpp
88     GeomAlgoAPI_XAOExport.cpp
89     GeomAlgoAPI_XAOImport.cpp
90     GeomAlgoAPI_Copy.cpp
91 )
92
93 SET(PROJECT_LIBRARIES
94     GeomAPI
95     GeomAlgoImpl
96     ModelAPI
97     XAO
98     ${CAS_OCAF}
99     ${CAS_SHAPE}
100     ${CAS_TKBO}
101     ${CAS_TKBool}
102     ${CAS_TKBRep}
103     ${CAS_TKCAF}
104     ${CAS_TKCAF}
105     ${CAS_TKLCAF}
106     ${CAS_TKPrim}
107     ${CAS_TKSTEP}
108     ${CAS_TKSTEPBase}
109     ${CAS_TKIGES}
110     ${CAS_TKTopAlgo}
111     ${CAS_TKXSBase}
112     ${CAS_TKOffset}
113 )
114
115 ADD_DEFINITIONS(-DGEOMALGOAPI_EXPORTS ${CAS_DEFINITIONS})
116 ADD_LIBRARY(GeomAlgoAPI SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
117
118 SET(CMAKE_SWIG_FLAGS "-Wall")
119
120 SET_SOURCE_FILES_PROPERTIES(GeomAlgoAPI.i PROPERTIES CPLUSPLUS ON)
121 SET_SOURCE_FILES_PROPERTIES(GeomAlgoAPI.i PROPERTIES SWIG_DEFINITIONS "-shadow")
122
123 INCLUDE_DIRECTORIES(
124   ../GeomAPI
125   ../GeomAlgoImpl
126   ../ModelAPI
127   ../XAO
128   ${CAS_INCLUDE_DIRS}
129 )
130
131 TARGET_LINK_LIBRARIES(GeomAlgoAPI ${PROJECT_LIBRARIES})
132
133 SET(SWIG_SCRIPTS
134   ${CMAKE_CURRENT_BINARY_DIR}/GeomAlgoAPI.py
135 )
136
137 SET(SWIG_LINK_LIBRARIES
138   GeomAPI
139   GeomAlgoAPI
140   GeomAlgoImpl
141   ${PYTHON_LIBRARIES}
142 )
143
144 SWIG_ADD_MODULE(GeomAlgoAPI python GeomAlgoAPI.i ${PROJECT_HEADERS})
145 SWIG_LINK_LIBRARIES(GeomAlgoAPI ${SWIG_LINK_LIBRARIES})
146
147 IF(WIN32)
148   SET_TARGET_PROPERTIES(_GeomAlgoAPI PROPERTIES DEBUG_OUTPUT_NAME _GeomAlgoAPI_d)
149 ENDIF(WIN32)
150
151 INSTALL(TARGETS _GeomAlgoAPI DESTINATION ${SHAPER_INSTALL_SWIG})
152 INSTALL(TARGETS GeomAlgoAPI DESTINATION ${SHAPER_INSTALL_BIN})
153 INSTALL(FILES ${SWIG_SCRIPTS} DESTINATION ${SHAPER_INSTALL_SWIG})