From 20e5ef6d2e65634902a24d7842bc5b1a5ff367a2 Mon Sep 17 00:00:00 2001 From: RangerUFO Date: Fri, 17 Jan 2025 18:56:43 +0800 Subject: [PATCH] Add the missing `migrate_weights` target for CMake --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 84910cc..d40ffc0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -194,3 +194,6 @@ endif() # GEMMA_ENABLE_TESTS add_executable(compress_weights compression/compress_weights.cc) target_link_libraries(compress_weights libgemma hwy hwy_contrib) + +add_executable(migrate_weights compression/migrate_weights.cc) +target_link_libraries(migrate_weights libgemma hwy hwy_contrib)