Salome HOME
Speed up the redraw of sketch with constraints moved by the point of the line
[modules/shaper.git] / src / Model / CMakeLists.txt
index c6dfa0f7e75521f908c48396019004f9c71aab3c..c5cf96007803720c5cccf9fd8b732cb6eda87fe8 100644 (file)
@@ -1,36 +1,84 @@
-CMAKE_MINIMUM_REQUIRED(VERSION 2.8.11)
-
 INCLUDE(Common)
-INCLUDE(FindCAS)
 
 SET(PROJECT_HEADERS
     Model.h
     Model_Application.h
     Model_Document.h
-    Model_PluginManager.h
-    Model_Object.h
-    Model_Iterator.h
+    Model_Session.h
+    Model_Data.h
     Model_AttributeDouble.h
     Model_AttributeDocRef.h
+    Model_AttributeReference.h
+    Model_AttributeRefAttr.h
+    Model_AttributeRefList.h
+    Model_AttributeBoolean.h
+    Model_AttributeString.h
+    Model_AttributeInteger.h
+    Model_AttributeSelection.h
+    Model_AttributeSelectionList.h
+    Model_Events.h
+    Model_Update.h
+    Model_Validator.h
+    Model_ResultBody.h
+    Model_ResultConstruction.h
+    Model_ResultPart.h
+    Model_ResultGroup.h
+    Model_FeatureValidator.h
 )
 
 SET(PROJECT_SOURCES
-    Model_Application.cxx
-    Model_Document.cxx
-    Model_PluginManager.cxx
-    Model_Object.cxx
-    Model_Iterator.cxx
-    Model_AttributeDouble.cxx
-    Model_AttributeDocRef.cxx
+    Model_Application.cpp
+    Model_Document.cpp
+    Model_Session.cpp
+    Model_Data.cpp
+    Model_AttributeDouble.cpp
+    Model_AttributeDocRef.cpp
+    Model_AttributeReference.cpp
+    Model_AttributeRefAttr.cpp
+    Model_AttributeRefList.cpp
+    Model_AttributeBoolean.cpp
+    Model_AttributeString.cpp
+    Model_AttributeInteger.cpp
+    Model_AttributeSelection.cpp
+    Model_AttributeSelectionList.cpp
+    Model_Events.cpp
+    Model_Update.cpp
+    Model_Validator.cpp
+    Model_ResultBody.cpp
+    Model_ResultConstruction.cpp
+    Model_ResultPart.cpp
+    Model_ResultGroup.cpp
+    Model_FeatureValidator.cpp
+)
+
+SET(PROJECT_LIBRARIES
+    ModelAPI 
+    Events 
+    Config 
+    GeomData
+    GeomAPI
+    GeomAlgoAPI
+    ${CAS_OCAF}
+    ${CAS_TKCAF}
+    ${CAS_SHAPE}
+    ${CAS_TKBO}
 )
 
+
+
 ADD_DEFINITIONS(-DMODEL_EXPORTS ${CAS_DEFINITIONS})
-ADD_LIBRARY(Model SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
-TARGET_LINK_LIBRARIES(Model ${PROJECT_LIBRARIES} ${CAS_OCAF} ModelAPI Event Config)
+ADD_LIBRARY(Model MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS})
+TARGET_LINK_LIBRARIES(Model ${PROJECT_LIBRARIES})
 
 INCLUDE_DIRECTORIES(
   ../ModelAPI
-  ../Event
+  ../Events
   ../Config
+  ../GeomData
+  ../GeomDataAPI
+  ../GeomAlgoAPI
+  ../GeomAPI
   ${CAS_INCLUDE_DIRS}
 )
+
+INSTALL(TARGETS Model DESTINATION bin)