12 lines
280 B
CMake
12 lines
280 B
CMake
|
set(target humanus_cli_plan_mem0)
|
||
|
|
||
|
add_executable(${target} humanus_plan_mem0.cpp)
|
||
|
|
||
|
# 链接到核心库
|
||
|
target_link_libraries(${target} PRIVATE humanus)
|
||
|
|
||
|
# 设置输出目录
|
||
|
set_target_properties(${target}
|
||
|
PROPERTIES
|
||
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||
|
)
|