mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	fix clang format on mingw/msys2 (#6188)
This commit is contained in:
		
							parent
							
								
									f6320c8de9
								
							
						
					
					
						commit
						94d0399876
					
				
					 1 changed files with 9 additions and 7 deletions
				
			
		|  | @ -296,13 +296,15 @@ if (CLANG_FORMAT) | ||||||
|     set(SRCS ${PROJECT_SOURCE_DIR}/src) |     set(SRCS ${PROJECT_SOURCE_DIR}/src) | ||||||
|     set(CCOMMENT "Running clang format against all the .h and .cpp files in src/") |     set(CCOMMENT "Running clang format against all the .h and .cpp files in src/") | ||||||
|     if (WIN32) |     if (WIN32) | ||||||
|         add_custom_target(clang-format |         if(MINGW) | ||||||
|             COMMAND powershell.exe -Command "Get-ChildItem '${SRCS}/*' -Include *.cpp,*.h,*.mm -Recurse | Foreach {&'${CLANG_FORMAT}' -i $_.fullname}" |  | ||||||
|             COMMENT ${CCOMMENT}) |  | ||||||
|     elseif(MINGW) |  | ||||||
|             add_custom_target(clang-format |             add_custom_target(clang-format | ||||||
|                 COMMAND find `cygpath -u ${SRCS}` -iname *.h -o -iname *.cpp -o -iname *.mm | xargs `cygpath -u ${CLANG_FORMAT}` -i |                 COMMAND find `cygpath -u ${SRCS}` -iname *.h -o -iname *.cpp -o -iname *.mm | xargs `cygpath -u ${CLANG_FORMAT}` -i | ||||||
|                 COMMENT ${CCOMMENT}) |                 COMMENT ${CCOMMENT}) | ||||||
|  |         else() | ||||||
|  |             add_custom_target(clang-format | ||||||
|  |                 COMMAND powershell.exe -Command "Get-ChildItem '${SRCS}/*' -Include *.cpp,*.h,*.mm -Recurse | Foreach {&'${CLANG_FORMAT}' -i $_.fullname}" | ||||||
|  |                 COMMENT ${CCOMMENT}) | ||||||
|  |     endif() | ||||||
|     else() |     else() | ||||||
|         add_custom_target(clang-format |         add_custom_target(clang-format | ||||||
|             COMMAND find ${SRCS} -iname *.h -o -iname *.cpp -o -iname *.mm | xargs ${CLANG_FORMAT} -i |             COMMAND find ${SRCS} -iname *.h -o -iname *.cpp -o -iname *.mm | xargs ${CLANG_FORMAT} -i | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue