-
-
Notifications
You must be signed in to change notification settings - Fork 533
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat-buff-repair
- Loading branch information
Showing
987 changed files
with
80,508 additions
and
459,980 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
SET(CMAKE_SYSTEM_NAME "Windows") | ||
SET(CMAKE_SYSTEM_PROCESSOR "ARM64") | ||
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") | ||
set(CMAKE_CROSSCOMPILING OFF CACHE BOOL "") | ||
endif() | ||
|
||
set(_WZ_MINGW_TRIPLET_PREFIX "aarch64") | ||
|
||
find_program(CMAKE_C_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-gcc") | ||
find_program(CMAKE_CXX_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-g++") | ||
find_program(CMAKE_RC_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-windres") | ||
if(NOT CMAKE_RC_COMPILER) | ||
find_program(CMAKE_RC_COMPILER "windres") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
SET(CMAKE_SYSTEM_NAME "Windows") | ||
SET(CMAKE_SYSTEM_PROCESSOR "X86") | ||
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") | ||
set(CMAKE_CROSSCOMPILING OFF CACHE BOOL "") | ||
endif() | ||
|
||
set(_WZ_MINGW_TRIPLET_PREFIX "i686") | ||
|
||
find_program(CMAKE_C_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-gcc") | ||
find_program(CMAKE_CXX_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-g++") | ||
find_program(CMAKE_RC_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-windres") | ||
if(NOT CMAKE_RC_COMPILER) | ||
find_program(CMAKE_RC_COMPILER "windres") | ||
endif() |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
SET(CMAKE_SYSTEM_NAME "Windows") | ||
SET(CMAKE_SYSTEM_PROCESSOR "AMD64") | ||
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") | ||
set(CMAKE_CROSSCOMPILING OFF CACHE BOOL "") | ||
endif() | ||
|
||
set(_WZ_MINGW_TRIPLET_PREFIX "x86_64") | ||
|
||
find_program(CMAKE_C_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-gcc") | ||
find_program(CMAKE_CXX_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-g++") | ||
find_program(CMAKE_RC_COMPILER "${_WZ_MINGW_TRIPLET_PREFIX}-w64-mingw32-windres") | ||
if(NOT CMAKE_RC_COMPILER) | ||
find_program(CMAKE_RC_COMPILER "windres") | ||
endif() |
Oops, something went wrong.