summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/XcodeProject/XCTestAddBundle.cmake
blob: 444c730bbe65ad184f8f9ad32055bc3549b77698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
enable_language(Swift)
find_package(XCTest REQUIRED)

add_executable(TestedApp MACOSX_BUNDLE EXCLUDE_FROM_ALL foo.swift)

xctest_add_bundle(TestingAppBundle TestedApp foo.swift)

get_target_property(_lib_output_dir TestingAppBundle LIBRARY_OUTPUT_DIRECTORY)

if (NOT DEFINED TEST_EXPECTED_OUTPUT_DIR)
    message(FATAL_ERROR "Testing variable TEST_EXPECTED_OUTPUT_DIR is not set")
endif()

if (NOT _lib_output_dir STREQUAL TEST_EXPECTED_OUTPUT_DIR)
    message(SEND_ERROR "Property LIBRARY_OUTPUT_DIRECTORY is expected to be ${TEST_EXPECTED_OUTPUT_DIR} "
        "but was ${_lib_output_dir}")
endif()