]> SALOME platform Git repositories - modules/shaper.git/blob - src/GeomValidators/CMakeLists.txt
Salome HOME
Speed up the redraw of sketch with constraints moved by the point of the line
[modules/shaper.git] / src / GeomValidators / CMakeLists.txt
1 INCLUDE(Common)
2
3 SET(PROJECT_HEADERS
4     GeomValidators.h
5     GeomValidators_Positive.h
6 )
7
8 SET(PROJECT_SOURCES
9     GeomValidators_Positive.cpp
10 )
11
12 SET(PROJECT_LIBRARIES
13     ModelAPI 
14     Events 
15 )
16
17
18
19 ADD_DEFINITIONS(-DGEOMVALIDATORS_EXPORTS)
20 ADD_LIBRARY(GeomValidators SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
21 TARGET_LINK_LIBRARIES(GeomValidators ${PROJECT_LIBRARIES})
22
23 INCLUDE_DIRECTORIES(
24   ../ModelAPI
25   ../Events
26 )
27
28 INSTALL(TARGETS GeomValidators DESTINATION plugins)