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.
32 lines
604 B
32 lines
604 B
SubDir . ;
|
|
|
|
SubDirC++Flags $(ALLLIBSC++FLAGS) ;
|
|
|
|
if $(WINDOWS)
|
|
{
|
|
SUFEXE = .exe ;
|
|
}
|
|
|
|
Library libRtMidi : ThirdParty/rtmidi/RtMidi.cpp ;
|
|
|
|
MakeLocate libRtMidi.a : lib ;
|
|
|
|
LinkLibraries liveMusicMachine : libRtMidi libBase20 ;
|
|
|
|
Main liveMusicMachine : src/Main.cpp
|
|
src/Midi.cpp
|
|
src/SongState.cpp
|
|
src/Visualizers/ColorBlocks.cpp ;
|
|
|
|
MakeLocate liveMusicMachine : bin ;
|
|
|
|
#if $(WINDOWS)
|
|
#{
|
|
# MakeLocate liveMusicMachine.exe : windowsBin ;
|
|
#}
|
|
#else
|
|
#{
|
|
# MakeLocate liveMusicMachine : bin ;
|
|
#}
|
|
|
|
SubInclude . ThirdParty ;
|