blob: 3e5fbf1a585679b3d74965b0f44f1b51e8c6c269 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Order is important: place local paths ahead of system paths.
import sys
customCPPPATH = [ '%%LOCALBASE%%/include', '%%PYTHON_INCLUDEDIR%%' ]
customCCFLAGS = [ ]
customCXXFLAGS = [ ]
customLIBS = [ 'intl' ]
customLIBPATH = [ '%%PORTAUDIO_L%%', '%%LOCALBASE%%/lib' ]
customSHLINKFLAGS = [ '%%PORTAUDIO_R%%', '%%PTHREAD_LIBS%%' ]
customSWIGFLAGS = []
platform = 'linux'
|