mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 10:19:00 +08:00
27 lines
787 B
Diff
27 lines
787 B
Diff
From b56270d28a59297518e91f85333a2e1a7fecdc9e Mon Sep 17 00:00:00 2001
|
|
From: Juha Sointusalo <juha.sointusalo@gmail.com>
|
|
Date: Thu, 13 Dec 2018 21:38:23 +0200
|
|
Subject: [PATCH] fix building DLL on Windows
|
|
|
|
Without FTGL_LIBRARY all symbols are declared to be imported instead of
|
|
exported and linking the library fails.
|
|
---
|
|
CMakeLists.txt | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index d6c5a57..6b230ce 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -27,6 +27,7 @@ ENDIF(NOT CMAKE_BUILD_TYPE)
|
|
OPTION(BUILD_SHARED_LIBS "Build Shared Libraries" ON)
|
|
IF(BUILD_SHARED_LIBS)
|
|
SET(LIB_TYPE SHARED)
|
|
+ ADD_DEFINITIONS(-DFTGL_LIBRARY)
|
|
ELSE(BUILD_SHARED_LIBS)
|
|
SET(LIB_TYPE STATIC)
|
|
ADD_DEFINITIONS(-D FTGL_LIBRARY_STATIC)
|
|
--
|
|
2.18.0.windows.1
|
|
|