Skip to content

Commit

Permalink
Little "soloud console". For extremely niche use cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
jarikomppa committed Jul 20, 2024
1 parent 1157475 commit 9274817
Show file tree
Hide file tree
Showing 4 changed files with 8,646 additions and 0 deletions.
31 changes: 31 additions & 0 deletions build/genie.lua
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,37 @@ end

targetname "c_test"

-- 8< -- 8< -- 8< -- 8< -- 8< -- 8< -- 8< -- 8< -- 8< -- 8< --

project "console"
kind "ConsoleApp"
language "C++"
files {
"../demos/console/**.c*",
"../src/c_api/soloud_c.cpp"
}
includedirs {
"../include"
}

links {"SoloudStatic"}
if (not os.is("windows")) then
links { "pthread" }
links { "dl" }
end
if (WITH_ALSA == 1) then
links {"asound"}
end
if (WITH_JACK == 1) then
links { "jack" }
end
if (WITH_COREAUDIO == 1) then
links {"AudioToolbox.framework"}
end


targetname "console"

-- 8< -- 8< -- 8< -- 8< -- 8< -- 8< -- 8< -- 8< -- 8< -- 8< --

project "SoloudDynamic"
Expand Down
Loading

0 comments on commit 9274817

Please sign in to comment.