summaryrefslogtreecommitdiff
path: root/Tests/FunctionTest/SubDirScope/CMakeLists.txt
blob: c1a3cfb374a7aacf71c471fa64df1fd29670f86a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set(SUBDIR_DEFINED 1 PARENT_SCOPE)
set(SUBDIR_UNDEFINED PARENT_SCOPE)

# The above sets should not affect the current scope.
if(DEFINED SUBDIR_UNDEFINED)
  PASS("SubdirScope Undefine Test" "(${SUBDIR_UNDEFINED})")
else()
  FAILED("SubdirScope Undefine Test" "(${SUBDIR_UNDEFINED})")
endif()
if(DEFINED SUBDIR_DEFINED)
  FAILED("SubdirScope Define Test" "(${SUBDIR_DEFINED})")
else()
  PASS("SubdirScope Define Test" "(${SUBDIR_DEFINED})")
endif()