mirror of
https://github.com/kangjianwei/Data-Structure.git
synced 2026-02-06 00:07:05 +08:00
7 lines
215 B
CMake
7 lines
215 B
CMake
# 包含公共库
|
|
include_directories(${CMAKE_SOURCE_DIR}/Status)
|
|
|
|
# 生成可执行文件
|
|
add_executable(04.14 SqStack.h SqStack.c String.h String.c 04.14.c)
|
|
# 链接公共库
|
|
target_link_libraries(04.14 Scanf_lib) |