mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 08:29:01 +08:00
4335dc2edf
* pugixml fix export macros for !cl * v db
19 lines
533 B
Diff
19 lines
533 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 17f67d1f7..9acaf856f 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -110,8 +110,12 @@ if (BUILD_SHARED_LIBS)
|
|
PUBLIC
|
|
${PUGIXML_BUILD_DEFINES}
|
|
${PUGIXML_PUBLIC_DEFINITIONS}
|
|
+ )
|
|
+ if(WIN32)
|
|
+ target_compile_definitions(pugixml-shared
|
|
PRIVATE
|
|
- $<$<CXX_COMPILER_ID:MSVC>:PUGIXML_API=__declspec\(dllexport\)>)
|
|
+ PUGIXML_API=__declspec\(dllexport\))
|
|
+ endif()
|
|
target_compile_options(pugixml-shared
|
|
PRIVATE
|
|
${msvc-rt-mtd-shared}
|