File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ set(EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/build/bin)
1313get_target_property (ALLOCORE_LIBRARY allocore${DEBUG_SUFFIX} LOCATION )
1414get_target_property (ALLOCORE_DEP_INCLUDE_DIRS allocore${DEBUG_SUFFIX} ALLOCORE_DEP_INCLUDE_DIRS)
1515
16+ find_package (APR QUIET )
17+
18+ if (NOT (APR_LIBRARY AND APR_INCLUDE_DIR))
19+ message (WARNING "APR not available, not building alloGLV" )
20+ return ()
21+ endif ()
22+
1623if (BUILDING_GLV)
1724 set (GLV_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR} /../../GLV)
1825 get_target_property (glv_location GLV LOCATION )
Original file line number Diff line number Diff line change 4444#include < math.h>
4545#include < string>
4646#include " allocore/io/al_App.hpp"
47+ #include " allocore/io/al_File.hpp"
4748#include " alloGLV/al_ControlGLV.hpp"
4849
4950#include " GLV/glv.h"
Original file line number Diff line number Diff line change 4444#include < math.h>
4545#include < string>
4646#include < vector>
47- #include " allocore/al_Allocore.hpp"
47+ // #include "allocore/al_Allocore.hpp"
4848
49- /* #include "allocore/io/al_AudioIO.hpp"
49+ #include " allocore/io/al_AudioIO.hpp"
5050#include " allocore/sound/al_AudioScene.hpp"
5151#include " allocore/types/al_Color.hpp"
5252#include " allocore/graphics/al_Lens.hpp"
5353#include " allocore/graphics/al_Stereographic.hpp"
5454#include " allocore/io/al_Window.hpp"
55+ #include " allocore/io/al_ControlNav.hpp"
5556#include " allocore/protocol/al_OSC.hpp"
56- #include "allocore/io/al_ControlNav .hpp"*/
57+ #include " allocore/system/al_MainLoop .hpp"
5758
5859namespace al {
5960
You can’t perform that action at this time.
0 commit comments