Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
force build
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Jun 5, 2023
1 parent 992cb60 commit e5f4667
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -107,7 +107,8 @@ jobs:
run: |
source PawPaw/local.env win32
alias
cmake -S . -B build
# cmake -S . -B build
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
$(which cmake) --build build -j $(nproc)
- name: Create zip package
if: steps.cache.outputs.cache-hit == 'true'
Expand Down
6 changes: 6 additions & 0 deletions CMakeLists.txt
Expand Up @@ -81,3 +81,9 @@ set_target_properties(Chibi
AUTOUIC ON
AUTORCC ON
)

if(APPLE)
set_source_files_properties(
chibiembedwidget.cpp
PROPERTIES COMPILE_FLAGS -ObjC++)
endif()

0 comments on commit e5f4667

Please sign in to comment.