Skip to content

Commit

Permalink
workflow: remove unknown job
Browse files Browse the repository at this point in the history
  • Loading branch information
FSSRepo committed Jan 13, 2024
1 parent b5442e3 commit f8df6de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ jobs:

needs:
- ubuntu-latest-cmake
- macOS-latest-cmake
- windows-latest-cmake

steps:
Expand Down
8 changes: 5 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ else()
set(SD_STANDALONE OFF)
endif()

set(CONVERT_APP convert)

add_executable(${CONVERT_APP} convert.cpp)
set(BUILD_SHARED_LIBS OFF)

add_subdirectory(ggml)
add_subdirectory(thirdparty)

set(CONVERT_APP convert)

add_executable(${CONVERT_APP} convert.cpp)

target_link_libraries(${CONVERT_APP} PUBLIC ggml zip)
target_include_directories(${CONVERT_APP} PUBLIC . thirdparty)
target_compile_features(${CONVERT_APP} PUBLIC cxx_std_11)

0 comments on commit f8df6de

Please sign in to comment.