You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
982 B
19 lines
982 B
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()
|