Skip to content
Snippets Groups Projects
Select Git revision
  • f881ae091427837d2bf1894081c488a53f6f1d7e
  • master default protected
  • develop protected
  • ti_lab_build
  • cross_platform
  • big_2017_api_change
  • VA_v2024a
  • VA_v2023b
  • VA_v2023a
  • before_VANet_update
  • VA_v2022a
  • before_cmake_rework
  • v2021.a
  • v2020.a
  • v2019.a
  • v2018.b
16 results

setup.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.py 1.01 KiB
    from distutils.core import setup, Extension
    
    module1 = Extension('va',
    					define_macros = [('VA_PYTHON_VERSION_MAJOR', '2017'), ('VA_PYTHON_VERSION_MINOR', 'c')],
                        include_dirs = ['../VABase/include','../VANet/include'],
                        libraries = ['VABase', 'VANet', 'VistaBase', 'VistaAspects', 'VistaInterProcComm'],
                        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])