mirror of https://github.com/AxioDL/amuse.git
119 lines
3.5 KiB
CMake
119 lines
3.5 KiB
CMake
cmake_minimum_required(VERSION 3.10 FATAL_ERROR) # because of c++17
|
|
|
|
project(amuse)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
if(NOT MSVC)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-narrowing")
|
|
endif()
|
|
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/boo AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/athena)
|
|
message(STATUS "Preparing standalone build")
|
|
add_subdirectory(boo)
|
|
add_subdirectory(athena)
|
|
include_directories(athena/include)
|
|
endif()
|
|
|
|
set(SOURCES
|
|
lib/AudioGroup.cpp
|
|
lib/AudioGroupData.cpp
|
|
lib/AudioGroupPool.cpp
|
|
lib/AudioGroupProject.cpp
|
|
lib/AudioGroupSampleDirectory.cpp
|
|
lib/DirectoryEnumerator.cpp
|
|
lib/Emitter.cpp
|
|
lib/Engine.cpp
|
|
lib/Envelope.cpp
|
|
lib/Listener.cpp
|
|
lib/Sequencer.cpp
|
|
lib/SoundMacroState.cpp
|
|
lib/SongConverter.cpp
|
|
lib/SongState.cpp
|
|
lib/Voice.cpp
|
|
lib/Submix.cpp
|
|
lib/Studio.cpp
|
|
lib/EffectReverb.cpp
|
|
lib/EffectChorus.cpp
|
|
lib/EffectDelay.cpp
|
|
lib/ContainerRegistry.cpp
|
|
lib/DSPCodec.c
|
|
lib/N64MusyXCodec.c)
|
|
|
|
set(HEADERS
|
|
include/amuse/AudioGroup.hpp
|
|
include/amuse/AudioGroupData.hpp
|
|
include/amuse/AudioGroupPool.hpp
|
|
include/amuse/AudioGroupProject.hpp
|
|
include/amuse/AudioGroupSampleDirectory.hpp
|
|
include/amuse/DirectoryEnumerator.hpp
|
|
include/amuse/Emitter.hpp
|
|
include/amuse/Engine.hpp
|
|
include/amuse/Entity.hpp
|
|
include/amuse/Envelope.hpp
|
|
include/amuse/Listener.hpp
|
|
include/amuse/Sequencer.hpp
|
|
include/amuse/SoundMacroState.hpp
|
|
include/amuse/SongConverter.hpp
|
|
include/amuse/SongState.hpp
|
|
include/amuse/Voice.hpp
|
|
include/amuse/Submix.hpp
|
|
include/amuse/Studio.hpp
|
|
include/amuse/IBackendSubmix.hpp
|
|
include/amuse/IBackendVoice.hpp
|
|
include/amuse/IBackendVoiceAllocator.hpp
|
|
include/amuse/EffectBase.hpp
|
|
include/amuse/EffectReverb.hpp
|
|
include/amuse/EffectChorus.hpp
|
|
include/amuse/EffectDelay.hpp
|
|
include/amuse/ContainerRegistry.hpp
|
|
include/amuse/Common.hpp
|
|
include/amuse/amuse.hpp
|
|
include/amuse/DSPCodec.h
|
|
include/amuse/N64MusyXCodec.h)
|
|
|
|
unset(EXTRAS)
|
|
if(TARGET boo)
|
|
include_directories(${BOO_INCLUDE_DIR} ${BOO_INCLUDE_DIR}/../lib ${BOO_INCLUDE_DIR}/../soxr/src
|
|
${LOGVISOR_INCLUDE_DIR} ${ATHENA_INCLUDE_DIR} ${ZLIB_INCLUDE_DIR} ${LZO_INCLUDE_DIR})
|
|
list(APPEND EXTRAS lib/BooBackend.cpp include/amuse/BooBackend.hpp)
|
|
endif()
|
|
|
|
include_directories(include)
|
|
set(AMUSE_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include CACHE PATH "amuse include path" FORCE)
|
|
|
|
add_library(amuse
|
|
${SOURCES}
|
|
${HEADERS}
|
|
${EXTRAS})
|
|
if(COMMAND add_sanitizers)
|
|
add_sanitizers(amuse)
|
|
endif()
|
|
if(COMMAND cotire)
|
|
set_target_properties(amuse PROPERTIES COTIRE_ADD_UNITY_BUILD FALSE)
|
|
cotire(amuse)
|
|
endif()
|
|
|
|
if(TARGET boo AND NOT WINDOWS_STORE)
|
|
# AudioUnit Target (OS X only)
|
|
add_subdirectory(AudioUnit)
|
|
|
|
# VST Target
|
|
add_subdirectory(VST)
|
|
|
|
# Multi-platform CLI tools
|
|
|
|
# Player
|
|
add_executable(amuseplay WIN32 driver/amuseplay.cpp)
|
|
target_link_libraries(amuseplay amuse boo ${BOO_SYS_LIBS} logvisor athena-core athena-libyaml ${ZLIB_LIBRARIES} ${LZO_LIB})
|
|
|
|
# Converter
|
|
add_executable(amuseconv driver/amuseconv.cpp)
|
|
target_link_libraries(amuseconv amuse boo ${BOO_SYS_LIBS} logvisor athena-core athena-libyaml ${ZLIB_LIBRARIES} ${LZO_LIB})
|
|
|
|
# Renderer
|
|
add_executable(amuserender driver/amuserender.cpp)
|
|
target_link_libraries(amuserender amuse boo ${BOO_SYS_LIBS} logvisor athena-core athena-libyaml ${ZLIB_LIBRARIES} ${LZO_LIB})
|
|
endif()
|