Stephen Kelly a984f3257e Introduce add_compile_options command.
This command is similar to add_definitions, in that it affects
the compile options of all targets which follow it. The implementation
is similar to the implementation of the include_directories command,
in that it is based on populating a COMPILE_OPTIONS directory property
and using that to initialize the same property on targets.

Unlike the include_directories command however, the add_compile_options
command does not affect previously defined targets. That is, in
the following code, foo will not be compiled with -Wall, but bar
will be:

 add_library(foo ...)
 add_compile_options(-Wall)
 add_library(bar ...)
2013-06-04 11:36:55 +02:00
..
2013-05-16 14:38:07 -04:00
2013-05-16 14:43:44 -04:00
2013-05-16 14:38:07 -04:00
2013-05-07 08:39:19 -04:00
2013-05-16 14:38:07 -04:00
2013-06-04 00:01:05 -04:00
2013-05-22 12:52:12 -04:00
2013-05-16 19:33:13 +02:00
2012-09-28 17:00:52 -04:00
2012-09-28 17:00:52 -04:00
2013-05-29 08:40:00 +02:00
2012-02-02 23:40:21 +00:00
2013-06-03 09:56:44 -04:00
2012-02-21 15:33:31 -05:00