aboutsummaryrefslogtreecommitdiff
path: root/loader
diff options
context:
space:
mode:
authorIan Elliott <ian@LunarG.com>2015-02-06 18:10:35 -0700
committerIan Elliott <ian@LunarG.com>2015-02-06 18:13:04 -0700
commitb27de19702d69f2a9f9385e8078979c201c27b07 (patch)
treedc5401c3c3c738f752d6b04b6383d684ef8774ce /loader
parent6325e288dc66d6ce725ec34087c7b6032496ae14 (diff)
downloadusermoji-b27de19702d69f2a9f9385e8078979c201c27b07.tar.xz
Win: Allow the demos "tri" and "xglinfo" to build on Windows.
These had the WSI hacked out of them, since there isn't yet a standard API in this space, and what was originally done is only for X11.
Diffstat (limited to 'loader')
-rw-r--r--loader/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/CMakeLists.txt b/loader/CMakeLists.txt
index 2d2febfe..bbf5799f 100644
--- a/loader/CMakeLists.txt
+++ b/loader/CMakeLists.txt
@@ -15,7 +15,7 @@ include_directories(
if (WIN32)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DXGL_PROTOTYPES -D_CRT_SECURE_NO_WARNINGS")
- add_library(XGL SHARED loader.c dirent_on_windows.c dispatch.c table_ops.h)
+ add_library(XGL STATIC loader.c dirent_on_windows.c dispatch.c table_ops.h)
set_target_properties(XGL PROPERTIES SOVERSION 0)
target_link_libraries(XGL)
endif()