diff options
author | Matt Davies <matthew.davies@sony.com> | 2020-03-18 16:40:56 (GMT) |
---|---|---|
committer | Matt Davies <matthew.davies@sony.com> | 2020-03-26 16:01:42 (GMT) |
commit | 2ca1102f8347b0d25b476a9a785977f2dc8a812b (patch) | |
tree | b8f852f719c995967e3a712970253600cf930271 /Tests/VSWinStorePhone/EnsurePropertiesSet.cmake | |
parent | f00e1b816d7220b700f7f8d24347d80b66e30c86 (diff) | |
download | CMake-2ca1102f8347b0d25b476a9a785977f2dc8a812b.zip CMake-2ca1102f8347b0d25b476a9a785977f2dc8a812b.tar.gz CMake-2ca1102f8347b0d25b476a9a785977f2dc8a812b.tar.bz2 |
VS: Test VS_SETTINGS and VS_SOURCE_SETTINGS_<tool> properties.
Diffstat (limited to 'Tests/VSWinStorePhone/EnsurePropertiesSet.cmake')
-rw-r--r-- | Tests/VSWinStorePhone/EnsurePropertiesSet.cmake | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Tests/VSWinStorePhone/EnsurePropertiesSet.cmake b/Tests/VSWinStorePhone/EnsurePropertiesSet.cmake new file mode 100644 index 0000000..528c46f --- /dev/null +++ b/Tests/VSWinStorePhone/EnsurePropertiesSet.cmake @@ -0,0 +1,45 @@ +macro(ensure_props_set projectFile) + if(NOT EXISTS "${projectFile}") + message(FATAL_ERROR "Project file ${projectFile} does not exist.") + return() + endif() + + set(SourcePropertyFound FALSE) + set(DebugTargetPropertyFound FALSE) + set(ReleaseTargetPropertyFound FALSE) + + file(STRINGS "${projectFile}" lines) + foreach(line IN LISTS lines) + if(line MATCHES "<SourceProperty1.*Debug.*>SourceProperty1Value</SourceProperty1>") + message("SourceProperty1 setting found") + set(SourcePropertyFound TRUE) + endif() + + if(line MATCHES "<TargetProperty1.*Debug.*>TargetProperty1ValueDebug</TargetProperty1>") + message("Debug TargetProperty1 setting found") + set(DebugTargetPropertyFound TRUE) + endif() + + if(line MATCHES "<TargetProperty1.*Release.*>TargetProperty1ValueRelease</TargetProperty1>") + message("Release TargetProperty1 setting found") + set(ReleaseTargetPropertyFound TRUE) + endif() + endforeach() + + if (NOT SourcePropertyFound) + message(FATAL_ERROR "SourceProperty1 setting not found") + return() + endif() + + if (NOT DebugTargetPropertyFound) + message(FATAL_ERROR "Debug TargetProperty1 setting not found") + return() + endif() + + if (NOT ReleaseTargetPropertyFound) + message(FATAL_ERROR "Release TargetProperty1 setting not found") + return() + endif() +endmacro() + +ensure_props_set("${vcxproj}") |