summaryrefslogtreecommitdiff
path: root/MSVC_NMake
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2020-05-04 18:49:44 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2020-05-05 16:56:19 +0800
commitb932b8afb69bc62f8639051c605fbeb2b78f1022 (patch)
tree0e6ccd21a261e3cde70783ea9738ce1403abefe6 /MSVC_NMake
parent0ce9199ed9c588c19a907ebcd4ce2733d04c2ad9 (diff)
meson: Don't use gendef on Visual Studio
Instead, we use the newly-added CAIROMM_API which is defined to be __declspec(dllexport) to export the symbols directly. This will also allow some cleanup in the Meson build files, as we do not need to differentiate how the cairomm library is built on different compilers.
Diffstat (limited to 'MSVC_NMake')
-rw-r--r--MSVC_NMake/gendef/meson.build9
1 files changed, 0 insertions, 9 deletions
diff --git a/MSVC_NMake/gendef/meson.build b/MSVC_NMake/gendef/meson.build
deleted file mode 100644
index 3dc9cc2..0000000
--- a/MSVC_NMake/gendef/meson.build
+++ /dev/null
@@ -1,9 +0,0 @@
-# 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