From aff11711537f2f5881b3e8e53b4da587394dc8f3 Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Fri, 27 Jul 2012 09:06:40 +0000 Subject: [PATCH] Added missing "include/json/assertions.h" header in amalgamate.py. --- amalgamate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/amalgamate.py b/amalgamate.py index eab724f..2ced51b 100644 --- a/amalgamate.py +++ b/amalgamate.py @@ -72,6 +72,7 @@ def amalgamate_source( source_top_dir=None, header.add_file( 'include/json/value.h' ) header.add_file( 'include/json/reader.h' ) header.add_file( 'include/json/writer.h' ) + header.add_file( 'include/json/assertions.h' ) header.add_text( '#endif //ifndef JSON_AMALGATED_H_INCLUDED' ) target_header_path = os.path.join( os.path.dirname(target_source_path), header_include_path )