Search code examples
cmakestatic-librariesclion

CLion and CMake: only building a library without an executable?


How to only build a static library with clion without having an executable? How does the CMakeLists.txt look like? (without add_executable)

Update: If I don't add executable to Clion, I have an error, that an executable is required.

Here my CMakeLists.txt.


Solution

  • This is an old question. But I'll add the answer to your question as a help for other people. You need to replace your add_executable with add_library

    add_library(target_name source_files)