Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mingw32 Cross Compile Working #738

Merged
merged 3 commits into from
Feb 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cross: add mingw32 libs to bin2c
  • Loading branch information
mfisher31 committed Feb 10, 2024
commit 5d9bdbf12af23657e683c541cbaceeda1b7585d5
7 changes: 7 additions & 0 deletions util/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
#############
bin2c_sources = [ 'bin2c.cpp' ]
bin2c_deps = [ juce_dep ]

if cpp.get_id() == 'gcc'
foreach l : 'uuid wsock32 wininet version ole32 ws2_32 oleaut32 imm32 comdlg32 shlwapi rpcrt4 winmm dxgi'.split()
bin2c_deps += cpp.find_library (l, required : true)
endforeach
endif

bin2c_install_dir = get_option ('bindir')
bin2c = executable ('element-bin2c', bin2c_sources,
install : true,
Expand Down