File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def amalgamate_source( source_top_dir=None,
66
66
header .add_text ( '/// If defined, indicates that the source file is amalgated' )
67
67
header .add_text ( '/// to prevent private header inclusion.' )
68
68
header .add_text ( '#define JSON_IS_AMALGAMATION' )
69
- header .add_file ( 'include/json/version.h' )
69
+ # header.add_file( 'include/json/version.h' )
70
70
header .add_file ( 'include/json/config.h' )
71
71
header .add_file ( 'include/json/forwards.h' )
72
72
header .add_file ( 'include/json/features.h' )
@@ -105,10 +105,10 @@ def amalgamate_source( source_top_dir=None,
105
105
print 'Amalgating source...'
106
106
source = AmalgamationFile ( source_top_dir )
107
107
source .add_text ( '/// Json-cpp amalgated source (http://jsoncpp.sourceforge.net/).' )
108
- source .add_text ( '/// It is intented to be used with #include <%s> ' % header_include_path )
108
+ source .add_text ( '/// It is intented to be used with #include "%s" ' % target_source_path )
109
109
source .add_file ( 'LICENSE' , wrap_in_comment = True )
110
110
source .add_text ( '' )
111
- source .add_text ( '#include <%s> ' % header_include_path )
111
+ source .add_text ( '#include "%s" ' % header_include_path )
112
112
source .add_text ( '' )
113
113
lib_json = 'src/lib_json'
114
114
source .add_file ( os .path .join (lib_json , 'json_tool.h' ) )
You can’t perform that action at this time.
0 commit comments