mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
3af7d8a245
Updated LZMA SDK to version 9.20 http://www.7-zip.org/sdk.html http://downloads.sourceforge.net/sevenzip/lzma920.tar.bz2
32 lines
723 B
CMake
32 lines
723 B
CMake
cmake_minimum_required( VERSION 2.4 )
|
|
|
|
make_release_only()
|
|
|
|
if( "${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" )
|
|
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fomit-frame-pointer" )
|
|
endif( "${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" )
|
|
|
|
set( LZMA_FILES
|
|
C/7zBuf.c
|
|
C/7zCrc.c
|
|
C/7zCrcOpt.c
|
|
C/7zDec.c
|
|
C/7zIn.c
|
|
C/7zStream.c
|
|
C/Bcj2.c
|
|
C/Bra.c
|
|
C/Bra86.c
|
|
C/CpuArch.c
|
|
C/LzFind.c
|
|
C/Lzma2Dec.c
|
|
C/LzmaDec.c
|
|
C/LzmaEnc.c )
|
|
|
|
if( WIN32 )
|
|
set( LZMA_FILES ${LZMA_FILES} C/LzFindMt.c C/Threads.c )
|
|
else( WIN32 )
|
|
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_7ZIP_ST" )
|
|
endif( WIN32 )
|
|
|
|
add_library( lzma ${LZMA_FILES} )
|
|
target_link_libraries( lzma )
|