Salome HOME
updated copyright message
[modules/kernel.git] / src / Utils / CMakeLists.txt
old mode 100755 (executable)
new mode 100644 (file)
index 269d62c..3739aab
@@ -1,9 +1,9 @@
-# Copyright (C) 2012  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2012-2023  CEA, EDF, OPEN CASCADE
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 # License as published by the Free Software Foundation; either
-# version 2.1 of the License.
+# version 2.1 of the License, or (at your option) any later version.
 #
 # This library is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-INCLUDE_DIRECTORIES(
-  ${OMNIORB_INCLUDE_DIRS}
-  ${PTHREAD_INCLUDE_DIRS}
-  ${CMAKE_BINARY_DIR}/salome_adm
-  ${CMAKE_CURRENT_SOURCE_DIR}
-  ${CMAKE_CURRENT_SOURCE_DIR}/../Basics
-  ${CMAKE_CURRENT_SOURCE_DIR}/../SALOMELocalTrace
-  ${CMAKE_BINARY_DIR}/idl
-)
-SET(OpUtil_SOURCES
-  Utils_Timer.cxx
-  duplicate.cxx
-  Utils_CommException.cxx
-  Utils_SALOME_Exception.cxx
-  Utils_Identity.cxx
-  Utils_ORB_INIT.cxx
-  Utils_DESTRUCTEUR_GENERIQUE.cxx
-  Utils_ExceptHandlers.cxx
-  Utils_Mutex.cxx
-)
+IF(NOT SALOME_LIGHT_ONLY)
+
+  INCLUDE_DIRECTORIES(
+    ${OMNIORB_INCLUDE_DIR}
+    ${PTHREAD_INCLUDE_DIR}
+    ${PROJECT_BINARY_DIR}/salome_adm
+    ${CMAKE_CURRENT_SOURCE_DIR}
+    ${CMAKE_CURRENT_SOURCE_DIR}/../ArgvKeeper
+    ${CMAKE_CURRENT_SOURCE_DIR}/../Basics
+    ${CMAKE_CURRENT_SOURCE_DIR}/../SALOMELocalTrace
+    ${PROJECT_BINARY_DIR}/idl
+  )
+  ADD_DEFINITIONS(${OMNIORB_DEFINITIONS} ${PTHREAD_DEFINITIONS})
+  SET(COMMON_LIBS
+    ArgvKeeper
+    SALOMELocalTrace 
+    SalomeIDLKernel 
+    ${OMNIORB_LIBRARIES} 
+    ${PTHREAD_LIBRARIES}
+  )
+  SET(OpUtil_SOURCES
+    Utils_Timer.cxx
+    duplicate.cxx
+    Utils_CommException.cxx
+    Utils_SALOME_Exception.cxx
+    Utils_Identity.cxx
+    Utils_ORB_INIT.cxx
+    Utils_DESTRUCTEUR_GENERIQUE.cxx
+    Utils_ExceptHandlers.cxx
+    Utils_Mutex.cxx
+    OpUtil.cxx
+  )
+  FILE(GLOB COMMON_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx" )
+  
+ELSE()
 
-ADD_LIBRARY(OpUtil SHARED ${OpUtil_SOURCES})
-SET_TARGET_PROPERTIES(OpUtil PROPERTIES COMPILE_FLAGS "${OMNIORB_DEFINITIONS} ${PTHREAD_DEFINITIONS} ${PLATFORM_DEFINITIONS}")
-TARGET_LINK_LIBRARIES(OpUtil SALOMELocalTrace SalomeIDLKernel ${OMNIORB_LIBS} ${PTHREAD_LIBS})
-INSTALL(TARGETS OpUtil DESTINATION ${KERNEL_salomelib_LIBS})
+  INCLUDE_DIRECTORIES(
+    ${PTHREAD_INCLUDE_DIR}
+    ${PROJECT_BINARY_DIR}/salome_adm
+    ${CMAKE_CURRENT_SOURCE_DIR}
+    ${CMAKE_CURRENT_SOURCE_DIR}/../ArgvKeeper
+    ${CMAKE_CURRENT_SOURCE_DIR}/../Basics
+    ${CMAKE_CURRENT_SOURCE_DIR}/../SALOMELocalTrace
+  )
+  SET(COMMON_LIBS
+    ArgvKeeper
+    SALOMELocalTrace
+    ${PTHREAD_LIBRARIES}
+  )
+  SET(OpUtil_SOURCES
+    Utils_SALOME_Exception.cxx
+    duplicate.cxx
+    OpUtil.cxx
+  )  
+  SET(COMMON_HEADERS_HXX Utils_SALOME_Exception.hxx OpUtil.hxx)
+  
+ENDIF()
 
 SET(COMMON_SCRIPTS
   Utils_Identity.py 
   SALOME_utilities.py
 )
-SALOME_INSTALL_SCRIPTS("${COMMON_SCRIPTS}" ${KERNEL_salomescript_PYTHON})
+SALOME_INSTALL_SCRIPTS("${COMMON_SCRIPTS}" ${SALOME_INSTALL_SCRIPT_PYTHON})
 
-FILE(GLOB COMMON_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
-INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${KERNEL_salomeinclude_HEADERS})
+ADD_LIBRARY(OpUtil ${OpUtil_SOURCES})
+TARGET_LINK_LIBRARIES(OpUtil ${COMMON_LIBS})
+INSTALL(TARGETS OpUtil EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
+INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${SALOME_INSTALL_HEADERS})