Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Jan 2, 2025
1 parent 243c907 commit 8ffdd46
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/thirdparty/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ fpng = declare_dependency(include_directories: 'fpng', link_with: libfpng)
json = declare_dependency(include_directories: 'json')

httplib_proj = subproject('cpp-httplib', default_options: ['cpp-httplib_openssl=enabled'])
httplib = httplib_proj.get_variable('cpp_httplib_dep')
httplib_deps = [httplib_proj.get_variable('cpp_httplib_dep')]
if targetos == 'windows'
httplib_deps += [crypt32]
endif
httplib = declare_dependency(dependencies: httplib_deps)

libfatx = static_library('fatx', sources: 'fatx/fatx.c')
fatx = declare_dependency(include_directories: 'fatx', link_with: libfatx)

0 comments on commit 8ffdd46

Please sign in to comment.