https://github.com/mitjap/linux-to-windows-crosscompile-proto
Mostly for future reference
https://github.com/mitjap/linux-to-windows-crosscompile-proto
Last synced: about 2 months ago
JSON representation
Mostly for future reference
- Host: GitHub
- URL: https://github.com/mitjap/linux-to-windows-crosscompile-proto
- Owner: mitjap
- Created: 2018-05-24T20:44:32.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-24T20:51:47.000Z (about 8 years ago)
- Last Synced: 2025-01-19T16:13:53.400Z (over 1 year ago)
- Language: C++
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Crosscompilation using toolchain file is very simillar to regular building flow with CMake.
```
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/Toolchain.windows.cmake
cmake --build .
```
This same toolchain file can be used with pretty much any project.