mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-06 21:11:43 +00:00
de5d4715c2
CMake 2.4, since the distros don't seem to consider 2.6 stable yet. As a bonus, GTK+ is no longer a required dependency; now it's optional. - Made dehsupp ignore CR characters, so it doesn't spew warnings on Linux. SVN r1092 (trunk)
92 lines
2.3 KiB
CMake
92 lines
2.3 KiB
CMake
cmake_minimum_required( VERSION 2.4 )
|
|
|
|
# DUMB is much slower in a Debug build than a Release build, so we force a Release
|
|
# build here, since we're not maintaining DUMB, only using it.
|
|
# Comment out the below line to allow Debug builds.
|
|
set( CMAKE_BUILD_TYPE "RelWithDebInfo" )
|
|
|
|
set( CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG -DDEBUGMODE=1" )
|
|
|
|
if( CMAKE_COMPILER_IS_GNUC )
|
|
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wno-pointer-sign -Wno-uninitialized" )
|
|
endif( CMAKE_COMPILER_IS_GNUC )
|
|
|
|
include_directories( include )
|
|
|
|
add_library( dumb
|
|
src/core/atexit.c
|
|
src/core/duhlen.c
|
|
src/core/duhtag.c
|
|
src/core/dumbfile.c
|
|
src/core/loadduh.c
|
|
src/core/makeduh.c
|
|
src/core/rawsig.c
|
|
src/core/readduh.c
|
|
src/core/register.c
|
|
src/core/rendduh.c
|
|
src/core/rendsig.c
|
|
src/core/unload.c
|
|
src/helpers/barray.c
|
|
src/helpers/clickrem.c
|
|
src/helpers/memfile.c
|
|
src/helpers/resample.c
|
|
src/helpers/riff.c
|
|
src/helpers/sampbuf.c
|
|
src/helpers/silence.c
|
|
src/helpers/stdfile.c
|
|
src/it/filter.cpp
|
|
src/it/itload.c
|
|
src/it/itload2.c
|
|
src/it/itmisc.c
|
|
src/it/itorder.c
|
|
src/it/itread.c
|
|
src/it/itread2.c
|
|
src/it/itrender.c
|
|
src/it/itunload.c
|
|
src/it/load669.c
|
|
src/it/load6692.c
|
|
src/it/loadasy.c
|
|
src/it/loadasy2.c
|
|
src/it/loadmod.c
|
|
src/it/loadmod2.c
|
|
src/it/loadmtm.c
|
|
src/it/loadmtm2.c
|
|
src/it/loadoldpsm.c
|
|
src/it/loadoldpsm2.c
|
|
src/it/loadpsm.c
|
|
src/it/loadpsm2.c
|
|
src/it/loadptm.c
|
|
src/it/loadptm2.c
|
|
src/it/loadriff.c
|
|
src/it/loadriff2.c
|
|
src/it/loads3m.c
|
|
src/it/loads3m2.c
|
|
src/it/loadstm.c
|
|
src/it/loadstm2.c
|
|
src/it/loadxm.c
|
|
src/it/loadxm2.c
|
|
src/it/ptmeffect.c
|
|
src/it/read669.c
|
|
src/it/read6692.c
|
|
src/it/readam.c
|
|
src/it/readasy.c
|
|
src/it/readdsmf.c
|
|
src/it/readmod.c
|
|
src/it/readmod2.c
|
|
src/it/readmtm.c
|
|
src/it/readoldpsm.c
|
|
src/it/readpsm.c
|
|
src/it/readptm.c
|
|
src/it/readriff.c
|
|
src/it/reads3m.c
|
|
src/it/reads3m2.c
|
|
src/it/readstm.c
|
|
src/it/readstm2.c
|
|
src/it/readxm.c
|
|
src/it/readxm2.c
|
|
src/it/xmeffect.c )
|
|
target_link_libraries( dumb )
|
|
|
|
if( CMAKE_COMPILER_IS_GNUCXX )
|
|
set_source_files_properties( src/it/filter.cpp PROPERTIES COMPILE_FLAGS -msse )
|
|
endif( CMAKE_COMPILER_IS_GNUCXX )
|