Codebase list libsbml / debian/5.12.0+dfsg-3 src / dyn-package.cmake
debian/5.12.0+dfsg-3

Tree @debian/5.12.0+dfsg-3 (Download .tar.gz)

dyn-package.cmake @debian/5.12.0+dfsg-3raw · history · blame

#################################################################################
#
# @file:   dyn-package.cmake
# @brief:  CMake configuration for L3 Dyn package
# @author: Generated by autocreate code
#
# <!--------------------------------------------------------------------------
# This file is part of libSBML.  Please visit http://sbml.org for more
# information about SBML, and the latest version of libSBML.
#
# Copyright (C) 2013-2015 jointly by the following organizations:
#     1. California Institute of Technology, Pasadena, CA, USA
#     2. EMBL European Bioinformatics Institute (EMBL-EBI), Hinxton, UK
#     3. University of Heidelberg, Heidelberg, Germany
#
# Copyright (C) 2009-2013 jointly by the following organizations:
#     1. California Institute of Technology, Pasadena, CA, USA
#     2. EMBL European Bioinformatics Institute (EMBL-EBI), Hinxton, UK
#
# Copyright (C) 2006-2008 by the California Institute of Technology,
#     Pasadena, CA, USA 
#
# Copyright (C) 2002-2005 jointly by the following organizations:
#     1. California Institute of Technology, Pasadena, CA, USA
#     2. Japan Science and Technology Agency, Japan
#
# 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.  A copy of the license agreement is provided
# in the file named "LICENSE.txt" included with this software distribution
# and also available online as http://sbml.org/software/libsbml/license.html
# ------------------------------------------------------------------------ -->
#

if (ENABLE_DYN )

include(${LIBSBML_ROOT_SOURCE_DIR}/dyn-package.cmake)

#build up sources
set(DYN_SOURCES)

# go through all directories: common, extension and sbml
foreach(dir common extension sbml validator validator/constraints)

  # add to include directory
  include_directories(${CMAKE_CURRENT_SOURCE_DIR}/sbml/packages/dyn/${dir})

  # file sources
  file(GLOB current ${CMAKE_CURRENT_SOURCE_DIR}/sbml/packages/dyn/${dir}/*.cpp
                    ${CMAKE_CURRENT_SOURCE_DIR}/sbml/packages/dyn/${dir}/*.c
                    ${CMAKE_CURRENT_SOURCE_DIR}/sbml/packages/dyn/${dir}/*.h)

  # add sources
  set(DYN_SOURCES ${DYN_SOURCES} ${current})

  # mark header files for installation
  file(GLOB dyn_headers
                    ${CMAKE_CURRENT_SOURCE_DIR}/sbml/packages/dyn/${dir}/*.h)

  install(FILES  ${dyn_headers}
                    DESTINATION include/sbml/packages/dyn/${dir} )

endforeach()

# create source group for IDEs
source_group(dyn_package FILES ${DYN_SOURCES})

# add dyn sources to SBML sources
SET(LIBSBML_SOURCES ${LIBSBML_SOURCES} ${DYN_SOURCES})

######################################################
#
# add test scripts
#
if(WITH_CHECK)

	add_subdirectory(sbml/packages/dyn/extension/test)

endif()

endif()