add RtMini test/library (works under Windows)

minor cleanups
This commit is contained in:
erwin coumans
2013-03-30 00:14:46 -07:00
parent a1aa281622
commit 8797524bd6
16 changed files with 4698 additions and 33 deletions

View File

@@ -0,0 +1,33 @@
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{"Cocoa.framework"}
end