cmake笔记

add_subdirectory 将其他目录的cmakelist加入编译
file(GLOB_RECURSE [输出变量] [多个文件...]) 将多个文件加入到输出变量中作为列表

add_library([库名] SHARED [多个文件或变量...]) 将多个文件编译输出为动态库
add_executable([库名] [多个文件或变量...]) 将多个文件编译输出为二进制文件

posted on 2022-06-17 09:48  平ping  阅读(15)  评论(0编辑  收藏  举报