mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Restore the previous commit which somehow passed the buildbot given a missing condition on the sub-configure for libdispatch. This makes it more explicit as to what the desire is; the variable was being used to serve as a proxy for whether the build is not on a Darwin target.
30 lines
1016 B
CMake
30 lines
1016 B
CMake
include(SwiftWindowsSupport)
|
|
swift_swap_compiler_if_needed("SyntaxParserUnitTests")
|
|
|
|
add_swift_unittest(SwiftSyntaxParserTests
|
|
SyntaxParserTests.cpp
|
|
)
|
|
if(NOT SWIFT_BUILT_STANDALONE AND NOT CMAKE_C_COMPILER_ID STREQUAL Clang)
|
|
add_dependencies(SwiftSyntaxParserTests clang)
|
|
endif()
|
|
|
|
target_link_libraries(SwiftSyntaxParserTests
|
|
PRIVATE
|
|
libSwiftSyntaxParser)
|
|
|
|
if(APPLE)
|
|
# Prioritize finding the parser library from the build/lib directory.
|
|
# Otherwise it may find it from the 'lib/swift/macosx' directory which could
|
|
# be out-of-date.
|
|
get_target_property(link_flags SwiftSyntaxParserTests LINK_FLAGS)
|
|
set(link_flags "-Xlinker -rpath -Xlinker ${SWIFT_LIBRARY_OUTPUT_INTDIR} ${link_flags}")
|
|
set_property(TARGET SwiftSyntaxParserTests PROPERTY
|
|
LINK_FLAGS "${link_flags}")
|
|
endif()
|
|
|
|
set_property(TARGET SwiftSyntaxParserTests APPEND_STRING PROPERTY
|
|
COMPILE_FLAGS " -fblocks")
|
|
if(NOT CMAKE_SYSTEM_NAME STREQUAL Darwin)
|
|
target_link_libraries(SwiftSyntaxParserTests PRIVATE BlocksRuntime)
|
|
endif()
|