Skip to content

Commit

Permalink
link all
Browse files Browse the repository at this point in the history
  • Loading branch information
maxilevi committed Jun 27, 2024
1 parent e8a9fd7 commit 0e0b08f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
run: sudo apt-get install -y make gcc g++

- name: Build
run: make build
run: make
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ if (NOT CMAKE_SYSTEM_NAME STREQUAL "iOS")
add_executable(bench_e2e test/bench_e2e.cpp)

target_include_directories(main PRIVATE src/include ggml/include)
target_link_libraries(main PRIVATE vits)
target_link_libraries(main PRIVATE vits ggml)

target_include_directories(bench_e2e PRIVATE src/include ggml/include)
target_link_libraries(bench_e2e PRIVATE vits)
target_link_libraries(bench_e2e PRIVATE vits ggml)

add_executable(tests test/test_ggml_utils.cpp)
target_include_directories(tests PRIVATE src/include ggml/include)
Expand Down

0 comments on commit 0e0b08f

Please sign in to comment.