Changeset 5c411dc
- Timestamp:
- Sep 24, 2009, 5:28:55 PM (15 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- cd7d733
- Parents:
- 26ac356
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
r26ac356 r5c411dc 1 #! /usr/bin/python 2 # 1 3 # TODO 2 4 # - plugins/puredata: add pd compilation … … 29 31 opt.add_option('--enable-java', action='store_true', default=False, 30 32 help='compile with java support') 33 opt.add_option('--with-target-platform', type='string', 34 help='set target platform for cross-compilation', dest='target_platform') 31 35 opt.tool_options('compiler_cc') 32 36 opt.tool_options('compiler_cxx') … … 40 44 conf.check_tool('gnu_dirs') # helpful for autotools transition and .pc generation 41 45 conf.check_tool('misc') # needed for subst 46 47 if Options.options.target_platform: 48 Options.platform = Options.options.target_platform 49 50 if Options.platform == 'win32': 51 conf.env['shlib_PATTERN'] = 'lib%s.dll' 42 52 43 53 # check for required headers
Note: See TracChangeset
for help on using the changeset viewer.