2008-03-25 18:27:18 +03:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
2007-08-27 22:17:29 +04:00
|
|
|
project(SourceGroups)
|
|
|
|
|
|
|
|
# this is not really a test which can fail
|
2012-08-13 21:42:58 +04:00
|
|
|
# it is more an example with several source_group()
|
2007-08-27 22:17:29 +04:00
|
|
|
# commands.
|
2012-08-13 21:42:58 +04:00
|
|
|
# The created projects have to be loaded manually
|
2011-05-28 02:12:14 +04:00
|
|
|
# in Visual Studio/Xcode/Eclipse/...
|
2007-08-27 22:17:29 +04:00
|
|
|
# to see whether the correct groups have been created.
|
|
|
|
|
2007-08-24 22:39:13 +04:00
|
|
|
source_group(Base FILES main.c)
|
2007-08-24 18:39:51 +04:00
|
|
|
|
2007-08-24 22:39:13 +04:00
|
|
|
# a sub group
|
|
|
|
source_group(Base\\Sub1 FILES sub1/foo.c)
|
2007-08-24 18:39:51 +04:00
|
|
|
|
2007-08-24 22:39:13 +04:00
|
|
|
# a sub sub group
|
|
|
|
source_group(Base\\Sub1\\Sub2 FILES sub1/foobar.c)
|
|
|
|
|
|
|
|
# a group with empty name
|
|
|
|
source_group("" FILES foo.c)
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
# a group, whose name consists only of the delimiter
|
2007-08-24 22:39:13 +04:00
|
|
|
#should be handled the same way as an empty name
|
|
|
|
source_group("\\" FILES baz.c)
|
|
|
|
|
|
|
|
# a sub sub group whose last component has the same name
|
|
|
|
# as an already existing group
|
|
|
|
source_group(Base\\Sub1\\Base FILES bar.c)
|
|
|
|
|
|
|
|
# a group without files, is currently not created
|
|
|
|
source_group(EmptyGroup)
|
|
|
|
|
|
|
|
|
2009-07-11 08:05:20 +04:00
|
|
|
add_executable(SourceGroups main.c bar.c foo.c sub1/foo.c sub1/foobar.c baz.c README.txt)
|
2007-08-24 18:39:51 +04:00
|
|
|
|