package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
3.5 KiB
82 lines
3.5 KiB
3 years ago
|
package("caudio")
|
||
|
|
||
|
set_homepage("https://github.com/R4stl1n/cAudio")
|
||
|
set_description("3D Audio Engine Based on Openal")
|
||
|
|
||
|
add_urls("https://github.com/R4stl1n/cAudio/archive/refs/tags/$(version).zip",
|
||
|
"https://github.com/R4stl1n/cAudio.git")
|
||
|
add_versions("2.3.1", "10f36cd7e1583405ade9001c3782fdf04be09f0f74e56cba23fac3a2b3ed5ae5")
|
||
|
|
||
|
add_patches("2.3.1", path.join(os.scriptdir(), "patches", "2.3.1", "win32_fix.patch"), "92d09b63479e203e59cece12fb5d539ab73f6654228ad44b221361db50639acf")
|
||
|
|
||
|
add_deps("openal-soft")
|
||
|
add_links("cAudio", "Vorbis", "Ogg")
|
||
|
|
||
|
on_install("windows", "linux", function (package)
|
||
|
local dep_dir = (package:is_arch("x64", "x86_64") and "Dependencies64" or "Dependencies")
|
||
|
local configs = {
|
||
|
"-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"),
|
||
|
"-DCAUDIO_STATIC=" .. (package:config("shared") and "OFF" or "ON"),
|
||
|
"-DCAUDIO_DEPENDENCIES_DIR=" .. dep_dir,
|
||
|
"-DCAUDIO_BUILD_SAMPLES=OFF"
|
||
|
}
|
||
|
local cxflags
|
||
|
local shflags
|
||
|
if package:is_plat("windows") then
|
||
|
io.replace("cAudio/Headers/cOpenALUtil.h", "#if !defined(CAUDIO_PLATFORM_LINUX)", "#if 0", {plain = true})
|
||
|
if not package:dep("openal-soft"):config("shared") then
|
||
|
cxflags = "-DAL_LIBTYPE_STATIC"
|
||
|
end
|
||
|
shflags = "winmm.lib"
|
||
|
end
|
||
|
import("package.tools.cmake").install(package, configs, {buildir = "CMake",
|
||
|
cxflags = cxflags, shflags = shflags})
|
||
|
os.cp("cAudio/include/*.h", package:installdir("include"))
|
||
|
os.cp("cAudio/Headers/*.h", package:installdir("include"))
|
||
|
os.cp(path.join(dep_dir, "include/*"), package:installdir("include"))
|
||
|
os.cp("CMake/include/*.h", package:installdir("include"))
|
||
|
os.trycp("CMake/lib/**.lib", package:installdir("lib"))
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
void test(int argc, char* argv[]) {
|
||
|
cAudio::IAudioManager* audioMgr = cAudio::createAudioManager(false);
|
||
|
if(audioMgr)
|
||
|
{
|
||
|
cAudio::IAudioDeviceList* pDeviceList = cAudio::createAudioDeviceList();
|
||
|
unsigned int deviceCount = pDeviceList->getDeviceCount();
|
||
|
cAudio::cAudioString defaultDeviceName = pDeviceList->getDefaultDeviceName();
|
||
|
for(unsigned int i=0; i<deviceCount; ++i)
|
||
|
{
|
||
|
cAudio::cAudioString deviceName = pDeviceList->getDeviceName(i);
|
||
|
if(deviceName.compare(defaultDeviceName) == 0);
|
||
|
}
|
||
|
unsigned int deviceSelection = 0;
|
||
|
|
||
|
audioMgr->initialize(pDeviceList->getDeviceName(deviceSelection).c_str());
|
||
|
CAUDIO_DELETE pDeviceList;
|
||
|
pDeviceList = 0;
|
||
|
|
||
|
cAudio::IAudioSource* mysound = audioMgr->create("song", "../Media/cAudioTheme1.ogg",true);
|
||
|
|
||
|
for (size_t i=0; i<10; i++)
|
||
|
{
|
||
|
audioMgr->play2D("../Media/bling.ogg");
|
||
|
}
|
||
|
if(mysound)
|
||
|
{
|
||
|
mysound->setVolume(0.5);
|
||
|
mysound->play2d(false);
|
||
|
|
||
|
while(mysound->isPlaying())
|
||
|
cAudio::cAudioSleep(10);
|
||
|
|
||
|
}
|
||
|
|
||
|
cAudio::destroyAudioManager(audioMgr);
|
||
|
}
|
||
|
}
|
||
|
]]}, {configs = {languages = "cxx11"}, includes = "cAudio.h"}))
|
||
|
end)
|