add missing cross compile file
This commit is contained in:
parent
36d60961cd
commit
7151e18520
|
@ -33,7 +33,8 @@ jobs:
|
|||
make install
|
||||
- name: Build
|
||||
run: |
|
||||
mkdir ${{ gitea.workspace }}/build; cd ${{ gitea.workspace }}/build
|
||||
mkdir ${{ gitea.workspace }}/build
|
||||
cd ${{ gitea.workspace }}/build
|
||||
cmake -DCMAKE_TOOLCHAIN_FILE=../crossW64.cmake -DCMAKE_BUILD_TYPE=Release -DGIT_TAG=${{ steps.version.outputs.tag }} ..
|
||||
make -j $(nproc)
|
||||
make package
|
||||
|
|
8
crossW64.cmake
Normal file
8
crossW64.cmake
Normal file
|
@ -0,0 +1,8 @@
|
|||
set(CMAKE_SYSTEM_NAME Windows)
|
||||
set(CMAKE_SYSTEM_PROCESSOR AMD64)
|
||||
set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
|
||||
set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
|
||||
set(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
Loading…
Reference in a new issue