2022-03-11 16:00:09 +00:00
|
|
|
cmake_minimum_required(VERSION 3.8...3.22)
|
2022-06-07 15:37:03 +00:00
|
|
|
project(sapphire-compiler LANGUAGES CXX C)
|
2022-03-11 16:00:09 +00:00
|
|
|
|
|
|
|
set(CXX_STANDARD_REQUIRED 17)
|
|
|
|
|
2022-06-07 15:37:03 +00:00
|
|
|
find_package(LLVM REQUIRED CONFIG)
|
|
|
|
|
|
|
|
message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
|
|
|
|
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
|
|
|
|
|
|
|
|
include_directories(${LLVM_INCLUDE_DIRS})
|
|
|
|
separate_arguments(LLVM_DEFINITIONS_LIST NATIVE_COMMAND ${LLVM_DEFINITIONS})
|
|
|
|
add_definitions(${LLVM_DEFINITIONS_LIST})
|
|
|
|
|
2022-03-11 16:00:09 +00:00
|
|
|
add_executable(
|
|
|
|
sapphirec
|
|
|
|
src/sapphire.cpp
|
|
|
|
src/Lexer.cpp
|
|
|
|
src/Lexer.h
|
|
|
|
src/Token.h
|
|
|
|
src/Token.cpp
|
|
|
|
src/Location.h
|
|
|
|
src/Location.cpp
|
|
|
|
src/Error.h
|
|
|
|
src/Error.cpp
|
|
|
|
src/StringConversion.h
|
|
|
|
src/StringConversion.cpp
|
|
|
|
src/FormatString/FormatString.hpp
|
|
|
|
src/FileIO.h
|
|
|
|
src/FileIO.cpp
|
|
|
|
src/Importer.cpp
|
|
|
|
src/Importer.h
|
|
|
|
src/Arguments.cpp
|
|
|
|
src/Arguments.h
|
|
|
|
src/Normalizer.cpp
|
|
|
|
src/Normalizer.h
|
2022-06-02 16:25:01 +00:00
|
|
|
src/AST/ASTNode.cpp
|
|
|
|
src/AST/ASTNode.h
|
|
|
|
src/AST/BinaryOpNode.cpp
|
|
|
|
src/AST/BinaryOpNode.h
|
|
|
|
src/AST/ExprNode.cpp
|
|
|
|
src/AST/ExprNode.h
|
|
|
|
src/AST/MulNode.cpp
|
|
|
|
src/AST/MulNode.h
|
|
|
|
src/AST/NumberNode.cpp
|
|
|
|
src/AST/NumberNode.h
|
|
|
|
src/AST/StatementNode.cpp
|
|
|
|
src/AST/StatementNode.h
|
|
|
|
src/AST/SumNode.cpp
|
|
|
|
src/AST/SumNode.h
|
2022-05-28 18:44:26 +00:00
|
|
|
src/replace.cpp
|
|
|
|
src/replace.h
|
2022-06-02 16:25:01 +00:00
|
|
|
src/Parser.cpp
|
|
|
|
src/Parser.h
|
2022-03-11 16:00:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(sapphirec PUBLIC src)
|
|
|
|
target_include_directories(sapphirec PUBLIC src/tclap-1.2.5/include)
|
2022-06-07 15:37:03 +00:00
|
|
|
|
|
|
|
llvm_map_components_to_libnames(llvm_libs support core irreader)
|
|
|
|
|
|
|
|
# Link against LLVM libraries
|
|
|
|
target_link_libraries(sapphirec ${llvm_libs})
|