We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 373eec2 + f199723 commit 9034066Copy full SHA for 9034066
tools/SourceKit/CMakeLists.txt
@@ -34,6 +34,11 @@ if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin" AND NOT CMAKE_CROSSCOMPILING)
34
set(CMAKE_OSX_DEPLOYMENT_TARGET "")
35
endif()
36
37
+# If we were don't have XPC, just build inproc.
38
+if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin" AND NOT HAVE_XPC_H)
39
+ set(SWIFT_SOURCEKIT_USE_INPROC_LIBRARY TRUE)
40
+endif()
41
+
42
# Now include AddSwiftSourceKit
43
include(AddSwiftSourceKit)
44
tools/SourceKit/tools/sourcekitd/lib/API/CMakeLists.txt
@@ -1,7 +1,3 @@
1
-# If we were going to build for APPLE but don't have XPC, just build inproc.
2
-if(APPLE AND NOT HAVE_XPC_H)
3
- set(SWIFT_SOURCEKIT_USE_INPROC_LIBRARY TRUE)
4
-endif()
5
6
set(sourcekitdAPI_sources
7
CodeCompletionResultsArray.cpp
0 commit comments