Skip to content
Snippets Groups Projects
Select Git revision
  • c81621ec0b964740c5c41460098e563324a64b15
  • master default protected
  • fgh-updated-cw
  • cuda-solver-fix
  • fix-rocky-dockerfile
  • fgh-ba-mielchen
  • fgh-updated-base
  • i-nergy-ASM
  • emt-syngen-trstab
  • mnasolver-plugins
  • vs-signal-gen-follow-up-rebase6
  • fgh_cw_csv_sourcereader
  • sg-controllers
  • slew-scenarios-all-updated-villas
  • 4OrderSG-iter
  • SynGenModels
  • syngen-vbr-nicslu
  • slew-scenarios-all
  • slew-scenario-2
  • gh-actions
  • villas-interface
  • v1.0.0
  • v0.1.6
  • v0.1.5
  • v0.1.3
  • v0.1.1
  • v0.1.0
27 results

test_singlestepping.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup_static.py 1.15 KiB
    from distutils.core import setup, Extension
    
    module1 = Extension('va',
    					define_macros = [('VA_PYTHON_VERSION_MAJOR', '2017'), ('VA_PYTHON_VERSION_MINOR', 'c'), ('VABASE_STATIC', 1), ('VANET_STATIC', 1), ('VISTABASE_STATIC', 1), ('VISTAINTERPROCCOMM_STATIC', 1), ('VISTAASPECTS_STATIC',1)],
                        include_dirs = ['../VABase/include','../VANet/include'],
                        libraries = ['VABase', 'VANet', 'VistaBase', 'VistaAspects', 'VistaInterProcComm', 'winmm', 'ws2_32' ],
                        library_dirs = ['../build_win32-x64.vc14/lib','../../ViSTA/build_win32-x64.vc14/lib'],
    					sources = ['src/vasingleton.cpp'] )
    
    setup (name = 'va',
            version = '2017.c',
            description = 'Virtual Acoustics singleton interface',
           author = 'Institute of Technical Acoustics (ITA), RWTH Aachen University',
           author_email = 'post@akustik.rwth-aachen.de',
           url = 'https://virtualacoustics.org',
           long_description = '''
    Virtual Acoustics is a real-time auralization framework for Virtual Reality. This module is an interface to interact with a VA server.
    ''',
    		license = "Apache License Version 2.0",
            ext_modules = [module1])