mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-11 19:21:46 +00:00
8 lines
234 B
CMake
8 lines
234 B
CMake
|
set(TARGET task-allocator)
|
||
|
add_executable(${TARGET} task-allocator.c)
|
||
|
target_link_libraries(${TARGET} PRIVATE)
|
||
|
target_compile_features(${TARGET} PRIVATE c_std_11)
|
||
|
if(TARGET BUILD_INFO)
|
||
|
add_dependencies(${TARGET} BUILD_INFO)
|
||
|
endif()
|