X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fdemo%2FCMakeLists.txt;h=6a30be9160e1fc2ebfdfdcb328ff0bd25101f992;hb=c707b7a431df27af2590fcf837190ee4e5070107;hp=245f2c469938a04a09c31b3a677ddf53d182888c;hpb=d19cff08b07249c26b8b851722e176032058c00a;p=bbtk.git diff --git a/packages/demo/CMakeLists.txt b/packages/demo/CMakeLists.txt index 245f2c4..6a30be9 100644 --- a/packages/demo/CMakeLists.txt +++ b/packages/demo/CMakeLists.txt @@ -1,3 +1,28 @@ + # --------------------------------------------------------------------- + # + # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image + # pour la SantÈ) + # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton + # Previous Authors : Laurent Guigues, Jean-Pierre Roux + # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil + # + # This software is governed by the CeCILL-B license under French law and + # abiding by the rules of distribution of free software. You can use, + # modify and/ or redistribute the software under the terms of the CeCILL-B + # license as circulated by CEA, CNRS and INRIA at the following URL + # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html + # or in the file LICENSE.txt. + # + # As a counterpart to the access to the source code and rights to copy, + # modify and redistribute granted by the license, users are provided only + # with a limited warranty and the software's author, the holder of the + # economic rights, and the successive licensors have only limited + # liability. + # + # The fact that you are presently reading this means that you have had + # knowledge of the CeCILL-B license and that you accept its terms. + # ------------------------------------------------------------------------ */ + #=========================================================================== # CMAKE SETTINGS FOR BUILDING A BBTK PACKAGE #=========================================================================== @@ -35,25 +60,29 @@ SET(${BBTK_PACKAGE_NAME}_BUILD_VERSION 0) #=========================================================================== # UNCOMMENT EACH LIBRARY NEEDED (WILL BE FOUND AND USED AUTOMATICALLY) - SET(${BBTK_PACKAGE_NAME}_USE_VTK ON) - SET(${BBTK_PACKAGE_NAME}_USE_ITK ON) - SET(${BBTK_PACKAGE_NAME}_USE_GDCM ON) - SET(${BBTK_PACKAGE_NAME}_USE_GSMIS ON) - SET(${BBTK_PACKAGE_NAME}_USE_WXWIDGETS ON) +# LG : demo itself does not include/link against any of these libs +# SET(${BBTK_PACKAGE_NAME}_USE_VTK ON) +# SET(${BBTK_PACKAGE_NAME}_USE_ITK ON) +# SET(${BBTK_PACKAGE_NAME}_USE_GDCM ON) +# SET(${BBTK_PACKAGE_NAME}_USE_GSMIS ON) +# SET(${BBTK_PACKAGE_NAME}_USE_WXWIDGETS ON) #=========================================================================== #=========================================================================== # LIST HERE THE OTHER bbtk PACKAGES NEEDED # (WILL BE FOUND AND USED AUTOMATICALLY) -SET(${BBTK_PACKAGE_NAME}_USE_PACKAGES - std - wx - itk - vtk - itkvtk - wxvtk +# LG : the demo code does not include/link against other bbtk packages +# the dependency is just in bbs and will be resolved dynamically +# (package installed or not at run time) +#SET(${BBTK_PACKAGE_NAME}_USE_PACKAGES +# std +# wx +# itk +# vtk +# itkvtk +# wxvtk # ... - ) +# ) #=========================================================================== #===========================================================================