mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-06 13:00:30 +00:00
6d000a414a
- Implemented Oktalyzer format loader SVN r4079 (trunk)
106 lines
2.6 KiB
CMake
106 lines
2.6 KiB
CMake
cmake_minimum_required( VERSION 2.4 )
|
|
|
|
include( CheckFunctionExists )
|
|
|
|
# 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.
|
|
if( NOT CMAKE_BUILD_TYPE MATCHES "Release" )
|
|
set( CMAKE_BUILD_TYPE "RelWithDebInfo" )
|
|
endif( NOT CMAKE_BUILD_TYPE MATCHES "Release" )
|
|
|
|
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 )
|
|
|
|
CHECK_FUNCTION_EXISTS( itoa ITOA_EXISTS )
|
|
if( NOT ITOA_EXISTS )
|
|
add_definitions( -DNEED_ITOA=1 )
|
|
endif( NOT ITOA_EXISTS )
|
|
|
|
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/blip_buf.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/loadokt.c
|
|
src/it/loadokt2.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/readokt.c
|
|
src/it/readokt2.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 )
|