forked from swiftlang/swift-syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce an intentionally-partial CMake-based build system
Add a CMake-based build system that builds only the main modules (SwiftSyntax, SwiftDiagnostics, SwiftParser) that would be used in later stages of a host compiler. It does not run tests or build auxiliar convenience modules like SwiftSyntaxBuilder that aren't expected to be used in the compiler itself.
- Loading branch information
1 parent
6eb1701
commit 5916719
Showing
7 changed files
with
199 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This source file is part of the Swift.org open source project | ||
# | ||
# Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors | ||
# Licensed under Apache License v2.0 with Runtime Library Exception | ||
# | ||
# See http://swift.org/LICENSE.txt for license information | ||
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
|
||
cmake_minimum_required(VERSION 3.19.6) | ||
|
||
project(SwiftSyntax LANGUAGES C Swift) | ||
|
||
set(SWIFT_VERSION 5) | ||
set(CMAKE_Swift_LANGUAGE_VERSION ${SWIFT_VERSION}) | ||
|
||
# ensure Swift compiler can find _CSwiftSyntax | ||
add_compile_options($<$<COMPILE_LANGUAGE:Swift>:-I$<SEMICOLON>${CMAKE_CURRENT_SOURCE_DIR}/Sources/_CSwiftSyntax/include>) | ||
|
||
set(CMAKE_Swift_MODULE_DIRECTORY ${CMAKE_BINARY_DIR}/swift) | ||
|
||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) | ||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) | ||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) | ||
|
||
set(CMAKE_MACOSX_RPATH YES) | ||
|
||
add_subdirectory(Sources) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This source file is part of the Swift.org open source project | ||
# | ||
# Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors | ||
# Licensed under Apache License v2.0 with Runtime Library Exception | ||
# | ||
# See http://swift.org/LICENSE.txt for license information | ||
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
|
||
add_subdirectory(_CSwiftSyntax) | ||
add_subdirectory(SwiftSyntax) | ||
add_subdirectory(SwiftDiagnostics) | ||
add_subdirectory(SwiftParser) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This source file is part of the Swift.org open source project | ||
# | ||
# Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors | ||
# Licensed under Apache License v2.0 with Runtime Library Exception | ||
# | ||
# See http://swift.org/LICENSE.txt for license information | ||
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
|
||
add_library(SwiftDiagnostics STATIC | ||
FixIt.swift | ||
Message.swift | ||
Diagnostic.swift | ||
) | ||
|
||
target_link_libraries(SwiftDiagnostics PUBLIC | ||
SwiftSyntax) | ||
|
||
set_property(GLOBAL APPEND PROPERTY SWIFTSYNTAX_EXPORTS SwiftDiagnostics) | ||
|
||
# NOTE: workaround for CMake not setting up include flags yet | ||
set_target_properties(SwiftDiagnostics PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY}) | ||
|
||
install(TARGETS SwiftDiagnostics | ||
ARCHIVE DESTINATION lib | ||
LIBRARY DESTINATION lib | ||
RUNTIME DESTINATION bin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# This source file is part of the Swift.org open source project | ||
# | ||
# Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors | ||
# Licensed under Apache License v2.0 with Runtime Library Exception | ||
# | ||
# See http://swift.org/LICENSE.txt for license information | ||
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
|
||
add_library(SwiftParser STATIC | ||
Names.swift | ||
Lexer.swift | ||
Declarations.swift | ||
Directives.swift | ||
CharacterInfo.swift | ||
Attributes.swift | ||
Lookahead.swift | ||
Expressions.swift | ||
LoopProgressCondition.swift | ||
Statements.swift | ||
TokenPrecedence.swift | ||
Modifiers.swift | ||
Patterns.swift | ||
Availability.swift | ||
TriviaParser.swift | ||
TokenConsumer.swift | ||
Parser.swift | ||
Recovery.swift | ||
TopLevel.swift | ||
Types.swift | ||
|
||
Diagnostics/ParserDiagnosticMessages.swift | ||
Diagnostics/ParseDiagnosticsGenerator.swift) | ||
|
||
target_link_libraries(SwiftParser PUBLIC | ||
SwiftSyntax | ||
SwiftDiagnostics) | ||
|
||
set_property(GLOBAL APPEND PROPERTY SWIFTSYNTAX_EXPORTS SwiftParser) | ||
|
||
# NOTE: workaround for CMake not setting up include flags yet | ||
set_target_properties(SwiftParser PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY}) | ||
|
||
install(TARGETS SwiftParser | ||
ARCHIVE DESTINATION lib | ||
LIBRARY DESTINATION lib | ||
RUNTIME DESTINATION bin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# This source file is part of the Swift.org open source project | ||
# | ||
# Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors | ||
# Licensed under Apache License v2.0 with Runtime Library Exception | ||
# | ||
# See http://swift.org/LICENSE.txt for license information | ||
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
|
||
add_library(SwiftSyntax STATIC | ||
AbsolutePosition.swift | ||
AtomicCounter.swift | ||
BumpPtrAllocator.swift | ||
IncrementalParseTransition.swift | ||
SourceLength.swift | ||
SourceLocation.swift | ||
SourcePresence.swift | ||
Syntax.swift | ||
SyntaxArena.swift | ||
SyntaxChildren.swift | ||
SyntaxClassifier.swift | ||
SyntaxData.swift | ||
SyntaxOtherNodes.swift | ||
SyntaxText.swift | ||
SyntaxTreeViewMode.swift | ||
SyntaxVerifier.swift | ||
Utils.swift | ||
|
||
Raw/RawSyntax.swift | ||
Raw/RawSyntaxLayoutView.swift | ||
Raw/RawSyntaxNodeProtocol.swift | ||
Raw/RawSyntaxTokenView.swift | ||
|
||
Raw/gyb_generated/RawSyntaxNodes.swift | ||
Raw/gyb_generated/RawSyntaxValidation.swift | ||
|
||
gyb_generated/Misc.swift | ||
gyb_generated/SyntaxAnyVisitor.swift | ||
gyb_generated/SyntaxBaseNodes.swift | ||
gyb_generated/SyntaxClassification.swift | ||
gyb_generated/SyntaxCollections.swift | ||
gyb_generated/SyntaxEnum.swift | ||
gyb_generated/SyntaxFactory.swift | ||
gyb_generated/SyntaxKind.swift | ||
gyb_generated/SyntaxRewriter.swift | ||
gyb_generated/SyntaxTraits.swift | ||
gyb_generated/SyntaxVisitor.swift | ||
gyb_generated/TokenKind.swift | ||
gyb_generated/Tokens.swift | ||
gyb_generated/Trivia.swift | ||
|
||
gyb_generated/syntax_nodes/SyntaxDeclNodes.swift | ||
gyb_generated/syntax_nodes/SyntaxExprNodes.swift | ||
gyb_generated/syntax_nodes/SyntaxNodes.swift | ||
gyb_generated/syntax_nodes/SyntaxPatternNodes.swift | ||
gyb_generated/syntax_nodes/SyntaxStmtNodes.swift | ||
gyb_generated/syntax_nodes/SyntaxTypeNodes.swift | ||
) | ||
|
||
target_link_libraries(SwiftSyntax PRIVATE | ||
_CSwiftSyntax) | ||
|
||
set_property(GLOBAL APPEND PROPERTY SWIFTSYNTAX_EXPORTS SwiftSyntax) | ||
|
||
# NOTE: workaround for CMake not setting up include flags yet | ||
set_target_properties(SwiftSyntax PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY}) | ||
|
||
install(TARGETS SwiftSyntax | ||
ARCHIVE DESTINATION lib | ||
LIBRARY DESTINATION lib | ||
RUNTIME DESTINATION bin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This source file is part of the Swift.org open source project | ||
# | ||
# Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors | ||
# Licensed under Apache License v2.0 with Runtime Library Exception | ||
# | ||
# See http://swift.org/LICENSE.txt for license information | ||
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
|
||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include) | ||
add_library(_CSwiftSyntax STATIC | ||
src/atomic-counter.c) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module _CSwiftSyntax { | ||
header "atomic-counter.h" | ||
} |