blob: 3dc9cc25f224307e53dd4c8e2d7cf008e05cfdb1 (
plain)
1
2
3
4
5
6
7
8
9
|
# MSVC_NMake/gendef
# Input: is_msvc
# Output: gendef
# Used to generate the .def file required to obtain the import .lib file
if is_msvc
gendef = executable('gendef', 'gendef.cc', install: false)
endif
|