mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
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:
parent
c0d45529f2
commit
7425bf3ca6
9
NOTICE
9
NOTICE
|
@ -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.
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue