You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OpenTTD-patches/src/music/CMakeLists.txt

55 lines
798 B
CMake

if(NOT OPTION_DEDICATED)
add_files(
allegro_m.cpp
allegro_m.h
CONDITION Allegro_FOUND
)
add_files(
fluidsynth.cpp
fluidsynth.h
CONDITION Fluidsynth_FOUND
)
add_files(
cocoa_m.cpp
cocoa_m.h
CONDITION APPLE
)
add_files(
dmusic.cpp
dmusic.h
win32_m.cpp
win32_m.h
CONDITION WIN32
)
add_files(
extmidi.cpp
extmidi.h
CONDITION UNIX
)
add_files(
bemidi.cpp
bemidi.h
CONDITION OPTION_HAIKU
)
add_files(
os2_m.cpp
os2_m.h
CONDITION OPTION_OS2
)
endif()
add_files(
midi.h
midifile.cpp
midifile.hpp
music_driver.hpp
null_m.cpp
null_m.h
)