File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ jobs:
107
107
run : |
108
108
source PawPaw/local.env win32
109
109
alias
110
- cmake -S . -B build
110
+ # cmake -S . -B build
111
+ cmake -DCMAKE_CROSSCOMPILING=ON -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_SYSTEM_PROCESSOR=i686 -DCMAKE_AR=/usr/bin/i686-w64-mingw32-ar -DCMAKE_C_COMPILER_AR=/usr/bin/i686-w64-mingw32-ar -DCMAKE_CXX_COMPILER_AR=/usr/bin/i686-w64-mingw32-ar -DCMAKE_RANLIB=/usr/bin/i686-w64-mingw32-ranlib -DCMAKE_C_COMPILER_RANLIB=/usr/bin/i686-w64-mingw32-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/usr/bin/i686-w64-mingw32-ranlib -DCMAKE_CROSSCOMPILING_EMULATOR=wine -DCMAKE_RC_COMPILER=i686-w64-mingw32-windres -S . -B build
111
112
$(which cmake) --build build -j $(nproc)
112
113
- name : Create zip package
113
114
if : steps.cache.outputs.cache-hit == 'true'
Original file line number Diff line number Diff line change @@ -81,3 +81,9 @@ set_target_properties(Chibi
81
81
AUTOUIC ON
82
82
AUTORCC ON
83
83
)
84
+
85
+ if (APPLE )
86
+ set_source_files_properties (
87
+ chibiembedwidget.cpp
88
+ PROPERTIES COMPILE_FLAGS -ObjC++ )
89
+ endif ()
You can’t perform that action at this time.
0 commit comments