Closed
Description
I am using the tags filter to improve readability in some of the complex filters in our projects and came accross this issue.
Here is an example using the the base example from #789.
workspace 'foobar'
configurations { 'release-std', 'debug-std', 'release-blz', 'debug-blz' }
filter { 'configurations:*-std' }
tags { 'use-std' }
filter { 'configurations:*-blz' }
tags { 'use-blz' }
project 'test'
kind 'ConsoleApp'
platforms { 'x32', 'x64' }
files
{
"src/main.c",
"src/test.c"
}
filter { 'tags:use-std' } -- ok
defines { 'USE_STD' }`
filter { 'files:main.c' } -- ok
defines { 'MAIN' }
filter { 'tags:use-blz', 'files:main.c' } -- ignored
defines { 'BLZ_MAIN' }
I am willing to take a look but would appreciate if someone could point me in where I should be looking.