summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/CPack/tests/DEPENDENCIES/ExpectedFiles.cmake
blob: 3b280ba733a089328ecf1be5dcb96b92a74c552b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set(EXPECTED_FILES_COUNT "5")
set(EXPECTED_FILE_1_COMPONENT "applications")
set(EXPECTED_FILE_CONTENT_1_LIST "/usr;/usr/foo;/usr/foo/test_prog")
set(EXPECTED_FILE_2_COMPONENT "applications_auto")
set(EXPECTED_FILE_CONTENT_2_LIST "/usr;/usr/foo_auto;/usr/foo_auto/test_prog")
set(EXPECTED_FILE_3_COMPONENT "headers")
set(EXPECTED_FILE_CONTENT_3_LIST "/usr;/usr/bar;/usr/bar/CMakeLists.txt")
set(EXPECTED_FILE_4_COMPONENT "libs")
set(EXPECTED_FILE_CONTENT_4_LIST "/usr/bas;/usr/bas/libtest_lib.so")
set(EXPECTED_FILE_5_COMPONENT "libs_auto")
set(EXPECTED_FILE_CONTENT_5_LIST "/usr;/usr/bas_auto;/usr/bas_auto/libtest_lib.so")

if(GENERATOR_TYPE STREQUAL "DEB")
  set(whitespaces_ "[\t\n\r ]*")
  # dynamic lib extension is .so on Linux and .dylib on Mac so we will use a wildcard .* for it
  set(EXPECTED_FILE_CONTENT_4 "^.*/usr/bas${whitespaces_}.*/usr/bas/libtest_lib\\..*$")
  set(EXPECTED_FILE_CONTENT_5 "^.*/usr/bas_auto${whitespaces_}.*/usr/bas_auto/libtest_lib\\..*$")
endif()