CMake build multiple targets in different build directories

荒凉一梦 提交于 2020-01-28 02:37:09

问题


I have the following CMake structure:

CMakelists.txt
toolchain.cmake
folder1
   ----CMakelists.txt
folder2
   ----CMakelists.txt
etc..

My first-level CMakelists.txt file includes the other subdirectories. Now I want to build my code for a different target.

The manual way is:

1.
    mkdir hostBuild
    cd hostBuild
    cmake ..
    make

2.
    mkdir crossBuild
    cd crossBuild
    cmake .. --DCMAKE_TOOLCHAIN_FILE=toolchain.cmake
    make

Is it possible that this process can run automatically?

For example, I just have to run cmake . at my first level.

Is something like this is possible?


回答1:


No. The recommendation would be to just put your manual steps into a shell script.

CMake can only handle one compiler/make environment at a time (if you switch the compiler you need a different binary output directory).

Especially a toolchain file that does contain SET(CMAKE_SYSTEM_NAME ...) does change the whole outcome of the configuration/generation process.

For details on what CMake does see: CMake: In which Order are Files parsed (Cache, Toolchain, …)?

And you could make use of some CMake command line options in your shell script:

if [ ! -d hostBuild ]; then
    cmake -E make_directory hostBuild
    cmake -E chdir hostBuild cmake ..
fi
cmake --build hostBuild
...


来源:https://stackoverflow.com/questions/30999130/cmake-build-multiple-targets-in-different-build-directories

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!