From: mpa Date: Wed, 13 Nov 2013 12:19:25 +0000 (+0000) Subject: CMake: X-Git-Tag: V7_3_0a1~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=de9b08347e538e3602c4b22e5d52297889b6bdd8;p=plugins%2Fhexoticplugin.git CMake: - delete kernel dependency because options are local now - enable cmake testing for have message "No tests were found" if module has not tests --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c810e7..af063ce 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,11 +58,14 @@ SET(BUILD_SHARED_LIBS TRUE) LIST(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/adm_local/cmake_files") # User options -# (some options have already been defined in KERNEL) # ============ -#OPTION(SALOME_BUILD_TESTS "Build SALOME tests" ON) #for use in the future +OPTION(SALOME_BUILD_TESTS "Build SALOME tests" ON) OPTION(SALOME_BUILD_DOC "Generate SALOME HexoticPLUGIN documentation" ON) +IF(SALOME_BUILD_TESTS) + ENABLE_TESTING() +ENDIF() + # Advanced options: OPTION(SALOME_BUILD_GUI "Enable HexoticPLUGIN GUI" ON) MARK_AS_ADVANCED(SALOME_BUILD_GUI) diff --git a/SalomeHexoticPLUGINConfig.cmake.in b/SalomeHexoticPLUGINConfig.cmake.in index 2616d2c..a08561b 100644 --- a/SalomeHexoticPLUGINConfig.cmake.in +++ b/SalomeHexoticPLUGINConfig.cmake.in @@ -52,9 +52,8 @@ SET(HexoticPLUGIN_DEFINITIONS "@SMESH_DEFINITIONS@") #### Now the specificities # Options exported by the package: -#SET(SALOME_HexoticPLUGIN_BUILD_TESTS @SALOME_BUILD_TESTS@) -SET(SALOME_HexoticPLUGIN_BUILD_DOC @SALOME_BUILD_DOC@) - +SET(SALOME_HexoticPLUGIN_BUILD_TESTS @SALOME_BUILD_TESTS@) +SET(SALOME_HexoticPLUGIN_BUILD_DOC @SALOME_BUILD_DOC@) # Advanced options SET(SALOME_HexoticPLUGIN_BUILD_GUI @SALOME_BUILD_GUI@)