Salome HOME
Rigid constraint should process selection of vertex, lines and circles. So, a new...
[modules/shaper.git] / src / GeomValidators / CMakeLists.txt
1 ## Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 INCLUDE(Common)
4
5 SET(PROJECT_HEADERS
6     GeomValidators.h
7     GeomValidators_ConstructionComposite.h
8     GeomValidators_Face.h
9     GeomValidators_Positive.h
10     GeomValidators_ShapeType.h
11     GeomValidators_Tools.h
12 )
13
14 SET(PROJECT_SOURCES
15     GeomValidators_ConstructionComposite.cpp
16     GeomValidators_Face.cpp
17     GeomValidators_Positive.cpp
18     GeomValidators_ShapeType.cpp
19     GeomValidators_Tools.cpp
20 )
21
22 SET(PROJECT_LIBRARIES
23     ModelAPI 
24     Events
25     GeomAPI
26 )
27
28
29
30 ADD_DEFINITIONS(-DGEOMVALIDATORS_EXPORTS ${CAS_DEFINITIONS})
31 ADD_LIBRARY(GeomValidators SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
32 TARGET_LINK_LIBRARIES(GeomValidators ${PROJECT_LIBRARIES})
33
34 INCLUDE_DIRECTORIES(
35   ${CAS_INCLUDE_DIRS}
36   ${CMAKE_SOURCE_DIR}/src/ModelAPI
37   ${CMAKE_SOURCE_DIR}/src/Events
38   ${CMAKE_SOURCE_DIR}/src/GeomAPI
39   ${CMAKE_SOURCE_DIR}/src/GeomDataAPI
40 )
41
42 INSTALL(TARGETS GeomValidators DESTINATION plugins)