Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[circlechef] Revise to use mio-circle06 #11433

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions compiler/circlechef/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ if(NOT Protobuf_FOUND)
return()
endif(NOT Protobuf_FOUND)

if(NOT TARGET mio_circle05)
message(STATUS "circlechef: SKIP (missing mio-circle05)")
if(NOT TARGET mio_circle06)
message(STATUS "circlechef: SKIP (missing mio-circle06)")
return()
endif(NOT TARGET mio_circle05)
endif(NOT TARGET mio_circle06)

# Recipe Parser
add_subdirectory(proto)
Expand Down
4 changes: 2 additions & 2 deletions compiler/circlechef/circle/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ add_library(circlechef_circle STATIC ${SOURCES})
target_include_directories(circlechef_circle PUBLIC include)
target_include_directories(circlechef_circle PRIVATE src)
target_link_libraries(circlechef_circle circlechef_proto)
target_link_libraries(circlechef_circle mio_circle05)
target_link_libraries(circlechef_circle mio_circle05_helper)
target_link_libraries(circlechef_circle mio_circle06)
target_link_libraries(circlechef_circle mio_circle06_helper)
target_link_libraries(circlechef_circle cwrap)
target_link_libraries(circlechef_circle souschef)
2 changes: 1 addition & 1 deletion compiler/circlechef/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ target_include_directories(circlechef_core PUBLIC include)
target_include_directories(circlechef_core PRIVATE src)
target_link_libraries(circlechef_core PUBLIC circlechef_proto)
target_link_libraries(circlechef_core PUBLIC circlechef_log)
target_link_libraries(circlechef_core PUBLIC mio_circle05)
target_link_libraries(circlechef_core PUBLIC mio_circle06)
target_link_libraries(circlechef_core PUBLIC souschef)
target_link_libraries(circlechef_core PRIVATE nncc_coverage)

Expand Down
2 changes: 1 addition & 1 deletion compiler/circlechef/requires.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require("arser")
require("nnkit")
require("cwrap")
require("mio-circle05")
require("mio-circle06")
require("safemain")
require("hermes")
require("hermes-std")
Expand Down