-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1adfd0c
commit ef344e2
Showing
6 changed files
with
59 additions
and
24 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ _deps | |
CMakeUserPresets.json | ||
|
||
cmakebuild | ||
out | ||
|
||
build | ||
.gradle |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER cl) | ||
set(CMAKE_CXX_COMPILER cl) | ||
set(CMAKE_GENERATOR_PLATFORM "ARM64") | ||
set(CMAKE_C_COMPILER clang) | ||
set(CMAKE_CXX_COMPILER clang++) | ||
set(CMAKE_C_FLAGS "-march=armv8-a") | ||
set(CMAKE_CXX_FLAGS "-march=armv8-a") |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER cl) | ||
set(CMAKE_CXX_COMPILER cl) | ||
set(CMAKE_GENERATOR_PLATFORM "Win32") | ||
set(CMAKE_C_COMPILER mingw-w64-i686-gcc) | ||
set(CMAKE_CXX_COMPILER mingw-w64-i686-g++) | ||
set(CMAKE_C_FLAGS "-m32 -march=i386") | ||
set(CMAKE_CXX_FLAGS "-m32 -march=i386") |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER cl) | ||
set(CMAKE_CXX_COMPILER cl) | ||
set(CMAKE_GENERATOR_PLATFORM "x64") | ||
set(CMAKE_C_COMPILER mingw-w64-x86-64-gcc) | ||
set(CMAKE_CXX_COMPILER mingw-w64-x86-64-g++) | ||
set(CMAKE_C_FLAGS "-m64") | ||
set(CMAKE_CXX_FLAGS "-m64") |