Commit c9134844 authored by Zeno Albisser's avatar Zeno Albisser
Browse files

[Win64] Make sure ninja is built in 64bit mode as well.


Change-Id: If1665b5bb7a6db07ca737aa00d0ddba964e418aa
Reviewed-by: default avatarMichael Bruning <michael.bruning@digia.com>
Reviewed-by: default avatarAndras Becsi <andras.becsi@digia.com>
parent 085aa0d4
Branches
Tags
No related merge requests found
Showing with 5 additions and 1 deletion
...@@ -113,7 +113,11 @@ defineReplace(findOrBuildNinja) { ...@@ -113,7 +113,11 @@ defineReplace(findOrBuildNinja) {
# If we did not find ninja, then we bootstrap it. # If we did not find ninja, then we bootstrap it.
!exists($$out) { !exists($$out) {
system("python $$dirname(out)/bootstrap.py") contains(DEFINES, WIN64) {
system("python $$dirname(out)/bootstrap.py --x64")
} else {
system("python $$dirname(out)/bootstrap.py")
}
} }
return($$out) return($$out)
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment