Skip to content
Snippets Groups Projects
Select Git revision
  • v1.25.0
  • main default protected
  • dev protected
  • Issue/3160-deactivateDownloadForFolders
  • Issue/3111-fixLoadingGitLabResource
  • Issue/3133-subProjectsChanges
  • Issue/3139-dsnrw
  • Issue/3167-changeTextAndAddLink
  • Issue/3070-newIconsForResourceTypes
  • Issue/3145-redesignLoginPage
  • Issue/3093-moreInformationInTheDeletionEmails
  • Issue/3040-closeTokenWindowWithXButton
  • Issue/3152-fixResourceStore
  • Issue/xxxx-DuckDBTest
  • Issue/3152-fixUpdateRequestPayload
  • Issue/2489-addNotificationManagement
  • Issue/3138-tooltipForDisabledCreateActions
  • Issue/3136-orderResourcesInAlphabeticalOrder
  • Issue/3119-respOrg-vol2
  • Issue/3119-respOrg
  • Issue/3129-improvmentsResourceCreation
  • v3.18.0
  • v3.17.2
  • v3.17.1
  • v3.17.0
  • v3.16.1
  • v3.16.0
  • v3.15.6
  • v3.15.5
  • v3.15.4
  • v3.15.3
  • v3.15.2
  • v3.15.1
  • v3.15.0
  • v3.14.0
  • v3.13.1
  • v3.13.0
  • v3.12.0
  • v3.11.0
  • v3.10.1
  • v3.9.3-hotfix3017
41 results

api.js

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])