Skip to content
Snippets Groups Projects
Select Git revision
  • 86128efd2023b3380389dcd72a0c63ae01f23b55
  • 5.4 default protected
  • 5.5
  • dev/5.5
  • dev/5.4
  • dev/5.3_downgrade
  • feature/experimenttime_hack
  • 5.3 protected
  • _IntenSelect5.3
  • IntenSelect5.3
  • 4.27 protected
  • 4.26 protected
  • 5.0 protected
  • 4.22 protected
  • 4.21 protected
  • UE5.4-2024.1
  • UE5.4-2024.1-rc1
  • UE5.3-2023.1-rc3
  • UE5.3-2023.1-rc2
  • UE5.3-2023.1-rc
20 results

BP_RWTHVRWidgetInteractionComponent.uasset

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