Skip to content

Commit

Permalink
Tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed Sep 6, 2024
1 parent bce0842 commit 52ddcfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ jobs:
- name: configure
if: ${{ matrix.config.enabled == 1 }}
run: ${{ matrix.config.config }}
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- name: make
if: ${{ matrix.config.enabled == 1 }}
run: ${{ matrix.config.build }}
Expand Down
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ if(LIBLO_FOUND)
maketest(liblo)
target_include_directories(liblo PRIVATE ${LIBLO_INCLUDE_DIRS})
target_link_libraries(liblo PRIVATE ${RTOSC_LIBLO_LIBRARIES})
target_link_directories(liblo PRIVATE ${LIBLO_LIBRARY_DIRS})
endif()

maketestcpp(version)
Expand All @@ -215,8 +216,9 @@ maketestcpp(path-search)
maketestcpp(performance)
if(LIBLO_FOUND)
target_include_directories(performance PRIVATE ${LIBLO_INCLUDE_DIRS})
target_link_libraries(performance PRIVATE ${RTOSC_LIBLO_LIBRARIES})
target_compile_definitions(performance PRIVATE HAVE_LIBLO)
target_link_libraries(performance PRIVATE ${RTOSC_LIBLO_LIBRARIES})
target_link_directories(performance PRIVATE ${LIBLO_LIBRARY_DIRS})
endif()

maketestcpp(undo-test)
Expand All @@ -235,6 +237,7 @@ if(LIBLO_FOUND)
target_include_directories(lo-server PRIVATE ${LIBLO_INCLUDE_DIRS})
target_include_directories(lo-server PRIVATE ${CMAKE_SOURCE_DIR}/include)
target_link_libraries(lo-server PRIVATE ${RTOSC_LIBLO_LIBRARIES})
target_link_directories(performance PRIVATE ${LIBLO_LIBRARY_DIRS})
set(RTOSC_TEST_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/test CACHE INTERNAL "")
set(RTOSC_TEST_LIB_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE INTERNAL "")
endif()
Expand Down

0 comments on commit 52ddcfa

Please sign in to comment.