Skip to content
Snippets Groups Projects
Select Git revision
  • d3f80f351adb970ae03865eb09165ebccd8bf4f9
  • master default protected
  • feature/add-dockerfile
  • feature/#16_Wait_until_a_connection_is_established
  • feature/#12_Make_transport_protocol_configurable
  • stable protected
  • feature/#1_Add_VTK_Demo
7 results

conanfile.py

Blame
  • conanfile.py 1.37 KiB
    # conanfile.py
    #
    # This file is part of NEST.
    #
    # Copyright (C) 2004 The NEST Initiative
    #
    # NEST is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 2 of the License, or
    # (at your option) any later version.
    #
    # NEST is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with NEST.  If not, see <http://www.gnu.org/licenses/>
    
    from conans import ConanFile, CMake
    
    class nest(ConanFile):
        name = "NEST"
        version = "18.05"
        license = "GNU General Public License, Version 2"
        description = """NEST is a simulator for spiking neural network models that focuses on the dynamics, size and structure of neural systems rather than on the exact morphology of individual neurons."""
        settings = "os", "compiler", "build_type", "arch"
    
        requires = (("contra/18.05@RWTH-VR/develop"),
                    ("nesci/18.05@RWTH-VR/develop"),
    		# ("Qt/5.11.1@bincrafters/stable"),
                    ("conduit/0.3.1@RWTH-VR/thirdparty"))
        generators = "cmake"
    
        def configure(self):
            pass
    
        def imports(self):
            pass