Skip to content

Commit

Permalink
fix build failure
Browse files Browse the repository at this point in the history
when building without jack support
  • Loading branch information
derselbst committed Mar 20, 2017
1 parent 4575e5e commit 0a4474c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ ADD_EXECUTABLE(TestStandardWrapper TestStandardWrapper.cpp)
TARGET_LINK_LIBRARIES(TestStandardWrapper anmp)
ADD_TEST(NAME TestStandardWrapper COMMAND TestStandardWrapper)

ADD_EXECUTABLE(TestJackOutput TestJackOutput.cpp)
TARGET_LINK_LIBRARIES(TestJackOutput anmp)
# ADD_TEST(NAME TestJackOutput COMMAND TestJackOutput)

if(USE_JACK)
ADD_EXECUTABLE(TestJackOutput TestJackOutput.cpp)
TARGET_LINK_LIBRARIES(TestJackOutput anmp)
# ADD_TEST(NAME TestJackOutput COMMAND TestJackOutput)
endif(USE_JACK)


# make test only runs tests, but doesnt build them
Expand Down

0 comments on commit 0a4474c

Please sign in to comment.