Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:LabSound/LabSound into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
meshula committed Jun 8, 2020
2 parents 68bebbd + c4ef055 commit 53c0dfe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cmake/LabSound.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ if (WIN32)
elseif (APPLE)
target_compile_definitions(LabSound PRIVATE __MACOSX_CORE__=1)
else()
set(LABSOUND_PLATFORM_LINK_LIBRARIES dl)
if (LABSOUND_JACK)
target_compile_definitions(LabSound PRIVATE __UNIX_JACK__=1)
set(LIBNYQUIST_JACK ON)
Expand All @@ -144,7 +145,7 @@ else()
endif()
endif()

target_link_libraries(LabSound libnyquist libopus libwavpack dl)
target_link_libraries(LabSound libnyquist libopus libwavpack ${LABSOUND_PLATFORM_LINK_LIBRARIES})

install(TARGETS LabSound
LIBRARY DESTINATION lib
Expand Down
2 changes: 1 addition & 1 deletion include/LabSound/core/Profiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace lab
{
if (!s->finalized)
{
std::chrono::system_clock::time_point end = std::chrono::system_clock::now();
//std::chrono::system_clock::time_point end = std::chrono::system_clock::now();
s->microseconds = std::chrono::system_clock::now() - _start;
s->finalized = true;
}
Expand Down
2 changes: 2 additions & 0 deletions src/internal/src/HRTFDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
#include "internal/Assertions.h"
#include "internal/HRTFElevation.h"

#include <stdexcept>

using namespace std;

namespace lab
Expand Down

0 comments on commit 53c0dfe

Please sign in to comment.