6 lines
139 B
CMake
6 lines
139 B
CMake
|
set(target humanus_chat)
|
||
|
|
||
|
add_executable(${target} humanus_chat.cpp)
|
||
|
|
||
|
# 链接到核心库
|
||
|
target_link_libraries(${target} PRIVATE humanus)
|