1 Star 0 Fork 2

sklink/mp3-decoder

forked from 奥大梨呀/mp3-decoder 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 375 Bytes
一键复制 编辑 原始数据 按行查看 历史
奥大梨呀 提交于 2024-11-06 17:50 +08:00 . 添加Readme
cmake_minimum_required(VERSION 3.12.4)
set(TARGET mp3Player)
project(${TARGET})
aux_source_directory(. SRCS)
include_directories(. MP3Decoder libmad/inc)
add_subdirectory(MP3Decoder)
add_subdirectory(libmad)
add_executable(${TARGET} ${SRCS})
target_link_libraries(
${TARGET}
-Wl,--start-group
MP3Decoder
pthread
mad
asound
-Wl,--end-group
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/sklink/mp3-decoder.git
git@gitee.com:sklink/mp3-decoder.git
sklink
mp3-decoder
mp3-decoder
master

搜索帮助