diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-25 08:56:48 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-25 08:56:48 +0200 |
commit | 098559ca3552ebd8f80a6d28254f4fa58913b751 (patch) | |
tree | 1eb6f65b492d3217a380a909f6810a5f3e00cc37 /butl/triplet | |
parent | 6c8e3f09c185d7fa4664ccd9e5c4f623a17b84cc (diff) |
Add DLL export/import support
Diffstat (limited to 'butl/triplet')
-rw-r--r-- | butl/triplet | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/butl/triplet b/butl/triplet index 44b5195..013818e 100644 --- a/butl/triplet +++ b/butl/triplet @@ -7,6 +7,8 @@ #include <string> +#include <butl/export> + namespace butl { // This is the ubiquitous 'target triplet' that loosely has the CPU-VENDOR-OS @@ -93,7 +95,7 @@ namespace butl // // 2. LLVM has the Triple class with similar goals. // - struct triplet + struct LIBBUTL_EXPORT triplet { std::string cpu; std::string vendor; |