-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CMake toolchain file for using the aarch64-w64-mingw32 toolchain (#8
- Loading branch information
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
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,7 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_SYSTEM_PROCESSOR ARM64) | ||
set(CMAKE_C_COMPILER aarch64-w64-mingw32-gcc) | ||
set(CMAKE_CXX_COMPILER aarch64-w64-mingw32-g++) | ||
set(CMAKE_RC_COMPILER aarch64-w64-mingw32-windres) | ||
set(CMAKE_RANLIB aarch64-w64-mingw32-ranlib) | ||
set(CMAKE_AR aarch64-w64-mingw32-ar) |
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