CMake子目录依赖

时间:2011-04-12 00:04:09

标签: dependencies cmake subdirectory

我是CMake的新手。事实上,我正在通过Kdevelop4 widh C ++来尝试它。

我习惯为我创建的每个命名空间创建子目录,即使所有源都必须编译并链接到单个可执行文件中。好吧,当我在kdevelop下创建一个目录时,它使用add_subdirectory命令更新CMakeLists.txt并在其下创建一个新的CMakeLists.txt,但仅此一项不会将其下的源添加到编译列表中。

我有根CMakeLists.txt如下:


project(gear2d)

add_executable(gear2d object.cc main.cc)

add_subdirectory(component)

在组件/我有我想要编译和链接的源以生成gear2d可执行文件。我怎么能做到这一点?

CMake常见问题解答有this条目,但如果这是答案,我宁愿留在简单的Makefile中。

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:17)

添加一个子目录并不比CMake指定它应该进入目录并在那里寻找另一个CMakeLists.txt。您仍然需要使用add_library创建包含源文件的库,并使用target_link_libraries将其链接到您的可执行文件。如下所示:

在子目录CMakeLists.txt

set( component_SOURCES ... ) # Add the source-files for the component here
# Optionally you can use file glob (uncomment the next line)
# file( GLOB component_SOURCES *.cpp )below

add_library( component ${component_SOURCES} )

Top-dir CMakeLists.txt

project( gear2d )
add_subdirectory( component )
add_executable( gear2d object.cc main.cc )
target_link_libraries( gear2d component )