mirror of
https://gitee.com/apaki/cmake_demo.git
synced 2025-05-18 04:11:37 +08:00
14 lines
256 B
Plaintext
14 lines
256 B
Plaintext
|
|
project(class)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
# 当前目录下的文件 -> 写入变量
|
|
aux_source_directory(. SRCS)
|
|
|
|
# 生成链接库
|
|
add_library(${PROJECT_NAME} SHARED ${SRCS})
|
|
|
|
# 配置安装库
|
|
install (TARGETS ${PROJECT_NAME} DESTINATION bin)
|