bullet3/btgui/MidiTest/premake4.lua
Erwin Coumans e0254539a6 remove exception handling form MidiTest/rtMidi
add Mac OSX defines/linking frameworks for rtMidi
2013-03-31 16:02:04 -07:00

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