File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,6 @@ def generate_build_options(arguments):
149
149
150
150
build_options .append ('-DENABLE_ALL_IN_ONE=%s' % arguments .all_in_one )
151
151
build_options .append ('-DCMAKE_BUILD_TYPE=%s' % arguments .build_type )
152
- build_options .extend (arguments .cmake_param )
153
152
build_options .append ('-DEXTERNAL_COMPILE_FLAGS=' + ' ' .join (arguments .compile_flag ))
154
153
build_options .append ('-DFEATURE_CPOINTER_32_BIT=%s' % arguments .cpointer_32bit )
155
154
build_options .append ('-DFEATURE_ERROR_MESSAGES=%s' % arguments .error_messages )
@@ -193,6 +192,8 @@ def generate_build_options(arguments):
193
192
build_options .append ('-DFEATURE_VALGRIND=%s' % arguments .valgrind )
194
193
build_options .append ('-DFEATURE_VALGRIND_FREYA=%s' % arguments .valgrind_freya )
195
194
195
+ build_options .extend (arguments .cmake_param )
196
+
196
197
return build_options
197
198
198
199
def configure_output_dir (arguments ):
You can’t perform that action at this time.
0 commit comments