Add Source in a subdirectory to a cmake project

后端 未结 3 1215
南方客
南方客 2020-12-02 14:30

I have project which has not been divided into libraries, but the source is organized in a directory tree. I do not know how to tell cmake to go down a directory, then add

3条回答
  •  星月不相逢
    2020-12-02 15:01

    Since CMake 3.1 there is a new way to add source from subdirectories: target_sources

    Say you have root_dir and root_dir/sub_dir and source files in both. With target_sources you can do this:

    In root_dir/CMakeLists.txt define the target

    add_library(some_target main.cpp)
    add_subdirectory(sub_dir)
    

    In root_dir/sub_dir/CMakeLists.txt add sources:

    target_sources(some_target PRIVATE more_cool_stuff.cpp)
    

    some_target will now contain both source files.

    It is also possible to use other commands in root_dir/sub_dir/CMakeLists.txt using some_target, for example target_compile_definitions which is quite convenient.

    I learned about target_sources here, check it out if you want more explanation and examples

提交回复
热议问题