How to only build a static library with clion without having an executable? How does the CMakeLists.txt look like? (without add_executable)
add_executable
Update: If
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
add_library(target_name source_files)