Conversation
Ryanf55
left a comment
There was a problem hiding this comment.
This looks good. Can you save the executable as part of the build so windows users can download it?
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v2 |
There was a problem hiding this comment.
| uses: actions/checkout@v2 | |
| uses: actions/checkout@v4 |
| choco install -y make gcc gcc-c++ qt5-win64-vs2017 | ||
|
|
||
| - name: Setup CMake | ||
| uses: actions/setup-cmake@v1 |
There was a problem hiding this comment.
| uses: actions/setup-cmake@v1 | |
| uses: actions/setup-cmake@v2 |
| mkdir build | ||
| cd build | ||
| cmake .. | ||
| cmake --build . | ||
| cmake --install . |
There was a problem hiding this comment.
| mkdir build | |
| cd build | |
| cmake .. | |
| cmake --build . | |
| cmake --install . | |
| cmake -B build | |
| cmake --build build | |
| cmake --install build |
That's a good question. I think I've manually attached the binaries on the Releases page, so there's not an urge to do it. Our releases are very sparse right now. I'll try that when I find some time. |
|
I tried the pro move of using Ubuntu and a cross compiler to get the executable, but found that getting a aysroot created with the QT dependencies too hard. Ill try on my work laptop later. |
No description provided.