compile .cc as well .cpp files to include bigint

git-svn-id: https://zxing.googlecode.com/svn/trunk@2663 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
smparkes@smparkes.net 2013-04-21 02:47:28 +00:00
parent c0d45529f2
commit 7425bf3ca6
2 changed files with 10 additions and 1 deletions

9
NOTICE
View file

@ -75,3 +75,12 @@ freely, subject to the following restrictions:
3. This notice may not be removed or altered from any source
distribution.
--------------------------------------------------------------------------------
NOTICES FOR C++ Big Integer Library
--------------------------------------------------------------------------------
I, Matt McCutchen, the sole author of the original Big Integer
Library, waive my copyright to it, placing it in the public domain.
The library comes with absolutely no warranty.

View file

@ -57,7 +57,7 @@ else:
libiconv_libs.append('iconv')
# Add libzxing library.
libzxing_files = all_files('core/src')
libzxing_files = all_files('core/src')+all_files('core/src', '.cc')
libzxing_include = ['core/src']
if platform.system() is 'Windows':
libzxing_files += all_files('core/src/win32')