~ubuntu-branches/ubuntu/utopic/fceux/utopic

« back to all changes in this revision

Viewing changes to src/utils/SConscript

  • Committer: Package Import Robot
  • Author(s): Joe Nahmias
  • Date: 2014-03-02 19:22:04 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140302192204-9f0aehi5stfnhn7d
Tags: 2.2.2+dfsg0-1
* Imported Upstream version 2.2.2
  + remove patches merged upstream; refresh remaining
  + remove windows compiled help files and non-free Visual C files
* Use C++11 standard static assertion functionality
* fix upstream installation of support files
* New patch 0004-ignore-missing-windows-help-CHM-file.patch
* update d/copyright for new, renamed, deleted files
* d/control: bump std-ver to 3.9.5, no changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import glob                                                                                   
2
 
source_list = glob.glob('*.cpp')
 
2
#source_list = glob.glob('*.cpp')
 
3
source_list = Split(
 
4
"""
 
5
backward.cpp
 
6
ConvertUTF.c
 
7
xstring.cpp
 
8
crc32.cpp     
 
9
endian.cpp  
 
10
general.cpp  
 
11
guid.cpp    
 
12
md5.cpp  
 
13
memory.cpp  
 
14
""")
 
15
 
 
16
Import('env')
 
17
 
 
18
 
 
19
if env['SYSTEM_MINIZIP'] == 0:
 
20
  source_list.append('unzip.cpp')
 
21
  source_list.append('ioapi.cpp')
3
22
 
4
23
for x in range(len(source_list)):
5
24
  source_list[x] = 'utils/' + source_list[x]