-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This would allow the build of WoA binaries, as well as SurfaceRT versions.
- Loading branch information
Yvan Janssens
committed
Oct 28, 2019
1 parent
c9f924f
commit c273481
Showing
2 changed files
with
34 additions
and
6 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
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 @@ | ||
# | ||
# CMAKE_TOOLCHAIN_FILE | ||
# | ||
# the name of the target operating system | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
|
||
# for 32 or 64 bits mingw-w64 | ||
# see http://mingw-w64.sourceforge.net/ | ||
set(COMPILER_PREFIX "armv7-w64-mingw32") | ||
|
||
set(CMAKE_C_COMPILER ${COMPILER_PREFIX}-gcc) | ||
set(CMAKE_CXX_COMPILER ${COMPILER_PREFIX}-g++) | ||
|
||
set(CMAKE_RC_COMPILER ${COMPILER_PREFIX}-windres) |