tahoma2d/toonz/sources/sound/CMakeLists.txt
2023-02-25 20:59:06 -05:00

35 lines
818 B
CMake

set(HEADERS
wav/tsio_wav.h
aiff/tsio_aiff.h
raw/tsio_raw.h
ffmpeg/tsio_ffmpeg.h
../include/tnzsound.h
)
set(SOURCES
tsio.cpp
tsioutils.cpp
wav/tsio_wav.cpp
aiff/tsio_aiff.cpp
raw/tsio_raw.cpp
ffmpeg/tsio_ffmpeg.cpp
)
add_library(sound SHARED ${HEADERS} ${SOURCES})
add_definitions(
-DSOUND_EXPORTS
)
if(BUILD_ENV_APPLE)
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-install_name,@executable_path/libsound.dylib")
add_dependencies(sound tnzcore tnzbase toonzlib)
endif()
message("subdir: sound")
message("type:" ${CMAKE_SHARED_LIBRARY_SUFFIX})
message("Bin: " ${CMAKE_CURRENT_BINARY_DIR})
_find_toonz_library(EXTRA_LIBS "tnzcore;tnzbase;toonzlib")
message("ToonzCore: " ${EXTRA_LIBS})
target_link_libraries(sound Qt5::Core ${EXTRA_LIBS})