mirror of
https://github.com/ZDoom/zdbsp.git
synced 2024-11-22 03:41:29 +00:00
2de2b094ec
- Add headers to generated CMake projects. - Made SSELevel global so that ClassifyLineBackpatch can see it without being part of FNodeBuilder. With backpatching enabled, it's rather pointless to have a different one per nodebuilder instance, anyway. - Change ClassifyLineBackpatch so it doesn't need any inline assembly to do its magic. - Change the ClassifyLine functions to be extern "C" linkage. SVN r2410 (trunk)
20 lines
365 B
CMake
20 lines
365 B
CMake
cmake_minimum_required( VERSION 2.4 )
|
|
|
|
if( CMAKE_COMPILER_IS_GNUC )
|
|
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -fomit-frame-pointer" )
|
|
endif( CMAKE_COMPILER_IS_GNUC )
|
|
|
|
add_library( z
|
|
adler32.c
|
|
compress.c
|
|
crc32.c
|
|
deflate.c
|
|
trees.c
|
|
zutil.c
|
|
crc32.h
|
|
deflate.h
|
|
trees.h
|
|
zconf.h
|
|
zlib.h
|
|
zutil.h )
|
|
target_link_libraries( z )
|