mirror of
https://gitee.com/apaki/cmake_demo.git
synced 2025-05-18 04:11:37 +08:00
11 lines
236 B
Plaintext
11 lines
236 B
Plaintext
|
|
# 当前目录下的文件 -> 写入变量
|
|
aux_source_directory(. DIR_LIB_SRC)
|
|
|
|
# 生成链接库
|
|
add_library(list ${DIR_LIB_SRC})
|
|
|
|
# 配置安装路径
|
|
install (TARGETS list DESTINATION bin)
|
|
install (FILES list.h DESTINATION include)
|