mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 20:32:00 +08:00
16 lines
542 B
Diff
16 lines
542 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 80b7d17..6ab78e2 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -15,6 +15,10 @@ set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
+# When compiling a Windows DLL export all symbols, just like Unix shared
|
|
+# objects do.
|
|
+set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
|
+
|
|
# https://github.com/izenecloud/cmake/blob/master/SetCompilerWarningAll.cmake
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
|
# Use the highest warning level for Visual Studio.
|