[CMake] Can you add sources to a target library after add_library()?
Eric Noulard
eric.noulard at gmail.com
Mon Jan 11 05:14:03 EST 2010
2010/1/11 Marcel Loose <loose at astron.nl>:
> Too bad. I was hoping I could do this without having to use a list
> variable to collect all my sources. In my case, the use of conditionals
> is somewhat awkward.
Personnally I sometime use several variable like:
add_library(blah
${BLAH_SOURCE}
${BLAH_SOURCE_OPT1}
${BLAH_SOURCE_OPT2}
${BLAH_SOURCE_OPT3})
xxx_OPTy var may contains source or may be void and off course
should be defined BEFORE add_library is called.
It is mostly like conditionnally adding the same content to a list but
may required less conditionnal because xxx_OPTy may defaulted to void content.
Would you explain us why you need to add source AFTER add_library
and may be why conditionnal is awkward?
--
Erk
Membre de l'April - « promouvoir et défendre le logiciel libre » -
http://www.april.org
More information about the CMake
mailing list