mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-18 21:10:05 +00:00
e0254539a6
add Mac OSX defines/linking frameworks for rtMidi
36 lines
439 B
Lua
36 lines
439 B
Lua
|
|
project "rtMidiTest"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
-- defines { }
|
|
|
|
targetdir "../../bin"
|
|
|
|
includedirs
|
|
{
|
|
".",
|
|
}
|
|
|
|
|
|
-- links { }
|
|
|
|
|
|
files {
|
|
"**.cpp",
|
|
"**.h"
|
|
}
|
|
if os.is("Windows") then
|
|
links {"winmm"}
|
|
defines {"__WINDOWS_MM__", "WIN32"}
|
|
end
|
|
|
|
if os.is("Linux") then
|
|
end
|
|
|
|
if os.is("MacOSX") then
|
|
links{"CoreAudio.framework", "coreMIDI.framework", "Cocoa.framework"}
|
|
defines {"__MACOSX_CORE__"}
|
|
print ("hi!")
|
|
end
|