llama.cpp/tools/expert-profile/CMakeLists.txt

9 lines
284 B
CMake

set(TARGET llama-expert-profile)
add_executable(${TARGET} expert-profile.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)
if(LLAMA_TOOLS_INSTALL)
install(TARGETS ${TARGET} RUNTIME)
endif()