mirror of
https://github.com/ZDoom/ZMusic.git
synced 2024-11-15 00:41:36 +00:00
27 lines
511 B
CMake
27 lines
511 B
CMake
cmake_minimum_required( VERSION 2.8.7 )
|
|
|
|
use_fast_math()
|
|
require_stricmp()
|
|
|
|
if( ZD_CMAKE_COMPILER_IS_GNUC_COMPATIBLE )
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-unused-function -Wno-unused-variable" )
|
|
endif()
|
|
|
|
include_directories( timidity )
|
|
|
|
file( GLOB HEADER_FILES
|
|
timidity/*.h
|
|
)
|
|
add_library( timidity STATIC
|
|
${HEADER_FILES}
|
|
common.cpp
|
|
instrum.cpp
|
|
instrum_dls.cpp
|
|
instrum_font.cpp
|
|
instrum_sf2.cpp
|
|
mix.cpp
|
|
playmidi.cpp
|
|
resample.cpp
|
|
timidity.cpp
|
|
)
|
|
target_link_libraries( timidity )
|