Fix cmake warnings
authorBoris Zanin <boris.zanin@mobica.com>
Mon, 12 Jun 2017 07:05:47 +0000 (09:05 +0200)
committerAlexander Galazin <Alexander.Galazin@arm.com>
Mon, 28 Aug 2017 09:14:40 +0000 (05:14 -0400)
commit2e3eebcc6679527e091de7cd2b1adf22c1d1b3a0
tree54f0f500c3158c761e7490138903c01af21c0569
parent83f7fcd8e1c7cb81a8b08d7161658ccd392c31e4
Fix cmake warnings

Running cmake command under Windows as

cmake -G "Visual Studio 12 Win64" /path/to/vk-gl-cts

or

cmake /path/to/vk-gl-cts

there are policy warnings CMP0054 stating:
"Only interpret if() arguments as variables or keywords when unquoted"

Fix: remove unnecessary quoting at complaining lines.
Also do not use dereferencing (i.e. ${var}) on variable due to cmake
does dereferencing automatically on variables in if statement. Good
explanation is at https://stackoverflow.com/questions/25809332/

Components: Framework

VK-GL-CTS issue: 492

Change-Id: I5258f4a5145588efb34ba2356ba25004277f9213
framework/delibs/cmake/Defs.cmake