File: meson.build

package info (click to toggle)
gtkmm3.0 3.24.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,316 kB
  • sloc: xml: 121,335; cpp: 8,647; makefile: 286; sh: 202; python: 6
file content (10 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
# MSVC_NMake/gendef

# Input: is_msvc
# Output: gendef, build_shared_libs_directly

# Used to generate the .def file required to obtain the import .lib file
if is_msvc and not build_shared_libs_directly
  gendef_cxx_flags = cpp_compiler.get_supported_arguments(['/wd4828'])
  gendef = executable('gendef', 'gendef.cc', cpp_args: gendef_cxx_flags, install: false,)
endif