Skip to content
Snippets Groups Projects
Commit f05f5b01 authored by Daniel Pfeifer's avatar Daniel Pfeifer
Browse files

cmliblzma: always build as static library

parent 4bbfea17
No related branches found
No related tags found
No related merge requests found
......@@ -182,10 +182,6 @@ SET(LZMA_SRCS
liblzma/simple/x86.c
)
IF(WIN32 AND BUILD_SHARED_LIBS)
SET(LZMA_SRCS ${LZMA_SRCS} liblzma/liblzma_w32res.rc)
ENDIF()
CONFIGURE_FILE(config.h.in config.h @ONLY)
INCLUDE_DIRECTORIES(
......@@ -209,7 +205,7 @@ ELSEIF(CMAKE_C_COMPILER_ID STREQUAL "PathScale")
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -woffall")
ENDIF()
ADD_LIBRARY(cmliblzma ${LZMA_SRCS})
ADD_LIBRARY(cmliblzma STATIC ${LZMA_SRCS})
IF(CMAKE_C_COMPILER_ID STREQUAL "XL")
# Disable the XL compiler optimizer because it causes crashes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment